org.eclipse.emf.ecore.util.EObjectContainmentEList Java Examples

The following examples show how to use org.eclipse.emf.ecore.util.EObjectContainmentEList. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ListMonitorImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<ListMonitorEntry> getEntries ()
{
    if ( entries == null )
    {
        entries = new EObjectContainmentEList.Resolving<ListMonitorEntry> ( ListMonitorEntry.class, this, OsgiPackage.LIST_MONITOR__ENTRIES );
    }
    return entries;
}
 
Example #2
Source File: ValueDescriptorImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<AttributeValue> getAttributes ()
{
    if ( attributes == null )
    {
        attributes = new EObjectContainmentEList.Resolving<AttributeValue> ( AttributeValue.class, this, ParserPackage.VALUE_DESCRIPTOR__ATTRIBUTES );
    }
    return attributes;
}
 
Example #3
Source File: CalculationComponentImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<PropertyEntry> getProperties ()
{
    if ( properties == null )
    {
        properties = new EObjectContainmentEList.Resolving<PropertyEntry> ( PropertyEntry.class, this, ComponentPackage.CALCULATION_COMPONENT__PROPERTIES );
    }
    return properties;
}
 
Example #4
Source File: EquinoxApplicationImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<IndependentConfiguration> getConfigurations ()
{
    if ( configurations == null )
    {
        configurations = new EObjectContainmentEList.Resolving<IndependentConfiguration> ( IndependentConfiguration.class, this, InfrastructurePackage.EQUINOX_APPLICATION__CONFIGURATIONS );
    }
    return configurations;
}
 
Example #5
Source File: ModbusExporterImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<ModbusExporterDevice> getDevices ()
{
    if ( devices == null )
    {
        devices = new EObjectContainmentEList<ModbusExporterDevice> ( ModbusExporterDevice.class, this, ModbusPackage.MODBUS_EXPORTER__DEVICES );
    }
    return devices;
}
 
Example #6
Source File: DriverApplicationImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<ApplicationModule> getModules ()
{
    if ( modules == null )
    {
        modules = new EObjectContainmentEList.Resolving<ApplicationModule> ( ApplicationModule.class, this, IEC60870Package.DRIVER_APPLICATION__MODULES );
    }
    return modules;
}
 
Example #7
Source File: ModbusDriverImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<Connection> getConnections ()
{
    if ( connections == null )
    {
        connections = new EObjectContainmentEList.Resolving<Connection> ( Connection.class, this, ModbusPackage.MODBUS_DRIVER__CONNECTIONS );
    }
    return connections;
}
 
Example #8
Source File: FunctionTypeExpressionImpl.java    From n4js with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<TFormalParameter> getFpars() {
	if (fpars == null) {
		fpars = new EObjectContainmentEList<TFormalParameter>(TFormalParameter.class, this, TypeRefsPackage.FUNCTION_TYPE_EXPRESSION__FPARS);
	}
	return fpars;
}
 
Example #9
Source File: TabularQueryTypeImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<CommandsType> getCommands ()
{
    if ( commands == null )
    {
        commands = new EObjectContainmentEList<CommandsType> ( CommandsType.class, this, ConfigurationPackage.TABULAR_QUERY_TYPE__COMMANDS );
    }
    return commands;
}
 
Example #10
Source File: ConnectionTypeImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<TabularQueryType> getTabularQuery ()
{
    if ( tabularQuery == null )
    {
        tabularQuery = new EObjectContainmentEList<TabularQueryType> ( TabularQueryType.class, this, ConfigurationPackage.CONNECTION_TYPE__TABULAR_QUERY );
    }
    return tabularQuery;
}
 
Example #11
Source File: RootTypeImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<ConnectionType> getConnection ()
{
    if ( connection == null )
    {
        connection = new EObjectContainmentEList<ConnectionType> ( ConnectionType.class, this, ConfigurationPackage.ROOT_TYPE__CONNECTION );
    }
    return connection;
}
 
Example #12
Source File: MasterServerImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<EventPool> getEventPools ()
{
    if ( eventPools == null )
    {
        eventPools = new EObjectContainmentEList.Resolving<EventPool> ( EventPool.class, this, OsgiPackage.MASTER_SERVER__EVENT_POOLS );
    }
    return eventPools;
}
 
Example #13
Source File: ParserDriverImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<Exporter> getExporter ()
{
    if ( exporter == null )
    {
        exporter = new EObjectContainmentEList.Resolving<Exporter> ( Exporter.class, this, ParserPackage.PARSER_DRIVER__EXPORTER );
    }
    return exporter;
}
 
Example #14
Source File: DeploymentInformationImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Author> getAuthors ()
{
    if ( authors == null )
    {
        authors = new EObjectContainmentEList.Resolving<Author> ( Author.class, this, DeploymentPackage.DEPLOYMENT_INFORMATION__AUTHORS );
    }
    return authors;
}
 
Example #15
Source File: LocalImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Filter> getFilters ()
{
    if ( filters == null )
    {
        filters = new EObjectContainmentEList.Resolving<Filter> ( Filter.class, this, GlobalizePackage.LOCAL__FILTERS );
    }
    return filters;
}
 
Example #16
Source File: ExporterItemInterceptorImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<PropertyEntry> getHiveProperties ()
{
    if ( hiveProperties == null )
    {
        hiveProperties = new EObjectContainmentEList<PropertyEntry> ( PropertyEntry.class, this, IEC60870Package.EXPORTER_ITEM_INTERCEPTOR__HIVE_PROPERTIES );
    }
    return hiveProperties;
}
 
Example #17
Source File: SystemNodeImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<DeploymentMechanism> getDeployment ()
{
    if ( deployment == null )
    {
        deployment = new EObjectContainmentEList.Resolving<DeploymentMechanism> ( DeploymentMechanism.class, this, InfrastructurePackage.SYSTEM_NODE__DEPLOYMENT );
    }
    return deployment;
}
 
Example #18
Source File: ComponentWorldImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Configuration> getConfigurations ()
{
    if ( configurations == null )
    {
        configurations = new EObjectContainmentEList.Resolving<Configuration> ( Configuration.class, this, ComponentPackage.COMPONENT_WORLD__CONFIGURATIONS );
    }
    return configurations;
}
 
Example #19
Source File: ExporterImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<Device> getDevices ()
{
    if ( devices == null )
    {
        devices = new EObjectContainmentEList<Device> ( Device.class, this, IEC60870Package.EXPORTER__DEVICES );
    }
    return devices;
}
 
Example #20
Source File: ViewImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<ScriptModule> getScriptModule ()
{
    if ( scriptModule == null )
    {
        scriptModule = new EObjectContainmentEList<ScriptModule> ( ScriptModule.class, this, DetailViewPackage.VIEW__SCRIPT_MODULE );
    }
    return scriptModule;
}
 
Example #21
Source File: TModuleImpl.java    From n4js with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<TVariable> getVariables() {
	if (variables == null) {
		variables = new EObjectContainmentEList<TVariable>(TVariable.class, this, TypesPackage.TMODULE__VARIABLES);
	}
	return variables;
}
 
Example #22
Source File: ProcessTypeImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<EnvEntryType> getEnv ()
{
    if ( env == null )
    {
        env = new EObjectContainmentEList<EnvEntryType> ( EnvEntryType.class, this, ConfigurationPackage.PROCESS_TYPE__ENV );
    }
    return env;
}
 
Example #23
Source File: NewsEntryImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Content> getContent() {
	if (content == null) {
		content = new EObjectContainmentEList<Content>(Content.class, this, WebPackage.NEWS_ENTRY__CONTENT);
	}
	return content;
}
 
Example #24
Source File: ConfigurationTypeImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<AnnouncerType> getAnnouncer ()
{
    if ( announcer == null )
    {
        announcer = new EObjectContainmentEList<AnnouncerType> ( AnnouncerType.class, this, ExporterPackage.CONFIGURATION_TYPE__ANNOUNCER );
    }
    return announcer;
}
 
Example #25
Source File: ParameterizedTypeRefStructural_IMImpl.java    From n4js with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<TStructMember> getAstStructuralMembers() {
	if (astStructuralMembers == null) {
		astStructuralMembers = new EObjectContainmentEList<TStructMember>(TStructMember.class, this, ImPackage.PARAMETERIZED_TYPE_REF_STRUCTURAL_IM__AST_STRUCTURAL_MEMBERS);
	}
	return astStructuralMembers;
}
 
Example #26
Source File: VersionedParameterizedTypeRefStructuralImpl.java    From n4js with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<TypeVariableMapping> getPostponedSubstitutions() {
	if (postponedSubstitutions == null) {
		postponedSubstitutions = new EObjectContainmentEList<TypeVariableMapping>(TypeVariableMapping.class, this, TypeRefsPackage.VERSIONED_PARAMETERIZED_TYPE_REF_STRUCTURAL__POSTPONED_SUBSTITUTIONS);
	}
	return postponedSubstitutions;
}
 
Example #27
Source File: RestExporterImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<PropertyEntry> getHiveProperties ()
{
    if ( hiveProperties == null )
    {
        hiveProperties = new EObjectContainmentEList.Resolving<PropertyEntry> ( PropertyEntry.class, this, OsgiPackage.REST_EXPORTER__HIVE_PROPERTIES );
    }
    return hiveProperties;
}
 
Example #28
Source File: ComposedMemberCacheImpl.java    From n4js with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<TMember> getCachedComposedMembers() {
	if (cachedComposedMembers == null) {
		cachedComposedMembers = new EObjectContainmentEList<TMember>(TMember.class, this, TypesPackage.COMPOSED_MEMBER_CACHE__CACHED_COMPOSED_MEMBERS);
	}
	return cachedComposedMembers;
}
 
Example #29
Source File: ParameterizedTypeRefStructural_IMImpl.java    From n4js with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<TStructMember> getGenStructuralMembers() {
	if (genStructuralMembers == null) {
		genStructuralMembers = new EObjectContainmentEList<TStructMember>(TStructMember.class, this, ImPackage.PARAMETERIZED_TYPE_REF_STRUCTURAL_IM__GEN_STRUCTURAL_MEMBERS);
	}
	return genStructuralMembers;
}
 
Example #30
Source File: AbstractGenericDatabaseSettingsImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<PropertyEntry> getAdditionalProperties ()
{
    if ( additionalProperties == null )
    {
        additionalProperties = new EObjectContainmentEList.Resolving<PropertyEntry> ( PropertyEntry.class, this, WorldPackage.ABSTRACT_GENERIC_DATABASE_SETTINGS__ADDITIONAL_PROPERTIES );
    }
    return additionalProperties;
}