Java Code Examples for org.eclipse.emf.ecore.util.EObjectContainmentEList#Resolving

The following examples show how to use org.eclipse.emf.ecore.util.EObjectContainmentEList#Resolving . 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: SubProfileImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<SystemProperty> getProperty ()
{
    if ( property == null )
    {
        property = new EObjectContainmentEList.Resolving<SystemProperty> ( SystemProperty.class, this, ProfilePackage.SUB_PROFILE__PROPERTY );
    }
    return property;
}
 
Example 2
Source File: ProfileConfigurationImpl.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, OsgiPackage.PROFILE_CONFIGURATION__PROPERTIES );
    }
    return properties;
}
 
Example 3
Source File: GlobalImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<MonitorPoolImport> getMonitorPoolImports ()
{
    if ( monitorPoolImports == null )
    {
        monitorPoolImports = new EObjectContainmentEList.Resolving<MonitorPoolImport> ( MonitorPoolImport.class, this, GlobalizePackage.GLOBAL__MONITOR_POOL_IMPORTS );
    }
    return monitorPoolImports;
}
 
Example 4
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 5
Source File: ExecuteImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<InputValue> getInputValue ()
{
    if ( inputValue == null )
    {
        inputValue = new EObjectContainmentEList.Resolving<InputValue> ( InputValue.class, this, RecipePackage.EXECUTE__INPUT_VALUE );
    }
    return inputValue;
}
 
Example 6
Source File: ParserComponentHostImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Component> getComponents ()
{
    if ( components == null )
    {
        components = new EObjectContainmentEList.Resolving<Component> ( Component.class, this, ParserPackage.PARSER_COMPONENT_HOST__COMPONENTS );
    }
    return components;
}
 
Example 7
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<MonitorPool> getMonitorPools ()
{
    if ( monitorPools == null )
    {
        monitorPools = new EObjectContainmentEList.Resolving<MonitorPool> ( MonitorPool.class, this, OsgiPackage.MASTER_SERVER__MONITOR_POOLS );
    }
    return monitorPools;
}
 
Example 8
Source File: SimpleDataMapperImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<DataMapperEntry> getEntries ()
{
    if ( entries == null )
    {
        entries = new EObjectContainmentEList.Resolving<DataMapperEntry> ( DataMapperEntry.class, this, OsgiPackage.SIMPLE_DATA_MAPPER__ENTRIES );
    }
    return entries;
}
 
Example 9
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<ApplicationModule> getModules ()
{
    if ( modules == null )
    {
        modules = new EObjectContainmentEList.Resolving<ApplicationModule> ( ApplicationModule.class, this, ParserPackage.PARSER_DRIVER__MODULES );
    }
    return modules;
}
 
Example 10
Source File: BlockingsImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<BlockGroup> getGroups ()
{
    if ( groups == null )
    {
        groups = new EObjectContainmentEList.Resolving<BlockGroup> ( BlockGroup.class, this, OsgiPackage.BLOCKINGS__GROUPS );
    }
    return groups;
}
 
Example 11
Source File: EquinoxDriverImpl.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<Module> getModules ()
{
    if ( modules == null )
    {
        modules = new EObjectContainmentEList.Resolving<Module> ( Module.class, this, InfrastructurePackage.EQUINOX_DRIVER__MODULES );
    }
    return modules;
}
 
Example 12
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<Exporter> getExporter ()
{
    if ( exporter == null )
    {
        exporter = new EObjectContainmentEList.Resolving<Exporter> ( Exporter.class, this, IEC60870Package.DRIVER_APPLICATION__EXPORTER );
    }
    return exporter;
}
 
Example 13
Source File: ProfileImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Controller> getControllers ()
{
    if ( controllers == null )
    {
        controllers = new EObjectContainmentEList.Resolving<Controller> ( Controller.class, this, ChartPackage.PROFILE__CONTROLLERS );
    }
    return controllers;
}
 
Example 14
Source File: ChartImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Profile> getProfiles ()
{
    if ( profiles == null )
    {
        profiles = new EObjectContainmentEList.Resolving<Profile> ( Profile.class, this, ChartPackage.CHART__PROFILES );
    }
    return profiles;
}
 
Example 15
Source File: ExternalEventMonitorImpl.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, OsgiPackage.EXTERNAL_EVENT_MONITOR__PROPERTIES );
    }
    return properties;
}
 
Example 16
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<Service> getServices ()
{
    if ( services == null )
    {
        services = new EObjectContainmentEList.Resolving<Service> ( Service.class, this, InfrastructurePackage.SYSTEM_NODE__SERVICES );
    }
    return services;
}
 
Example 17
Source File: WorldImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Node> getNodes ()
{
    if ( nodes == null )
    {
        nodes = new EObjectContainmentEList.Resolving<Node> ( Node.class, this, InfrastructurePackage.WORLD__NODES );
    }
    return nodes;
}
 
Example 18
Source File: DefaultEquinoxApplicationImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Exporter> getExporter ()
{
    if ( exporter == null )
    {
        exporter = new EObjectContainmentEList.Resolving<Exporter> ( Exporter.class, this, OsgiPackage.DEFAULT_EQUINOX_APPLICATION__EXPORTER );
    }
    return exporter;
}
 
Example 19
Source File: ArduinoDriverImpl.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, ArduinoPackage.ARDUINO_DRIVER__CONNECTIONS );
    }
    return connections;
}
 
Example 20
Source File: MasterHandlerPrioritiesImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<HandlerPriorityRule> getRules ()
{
    if ( rules == null )
    {
        rules = new EObjectContainmentEList.Resolving<HandlerPriorityRule> ( HandlerPriorityRule.class, this, WorldPackage.MASTER_HANDLER_PRIORITIES__RULES );
    }
    return rules;
}