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

The following examples show how to use org.eclipse.emf.ecore.util.EObjectContainmentWithInverseEList#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: DaveCommunicationProcessorImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<DaveRequestBlock> getBlocks ()
{
    if ( blocks == null )
    {
        blocks = new EObjectContainmentWithInverseEList.Resolving<DaveRequestBlock> ( DaveRequestBlock.class, this, DavePackage.DAVE_COMMUNICATION_PROCESSOR__BLOCKS, DavePackage.DAVE_REQUEST_BLOCK__DEVICE );
    }
    return blocks;
}
 
Example 2
Source File: StateImpl.java    From statecharts with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc --> <!-- end-user-doc -->
 * @generated
 */
public EList<Transition> getOutgoingTransitions() {
	if (outgoingTransitions == null) {
		outgoingTransitions = new EObjectContainmentWithInverseEList.Resolving<Transition>(Transition.class, this, SGraphPackage.STATE__OUTGOING_TRANSITIONS, SGraphPackage.TRANSITION__SOURCE);
	}
	return outgoingTransitions;
}
 
Example 3
Source File: CompositeElementImpl.java    From statecharts with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Region> getRegions() {
	if (regions == null) {
		regions = new EObjectContainmentWithInverseEList.Resolving<Region>(Region.class, this, SGraphPackage.COMPOSITE_ELEMENT__REGIONS, SGraphPackage.REGION__COMPOSITE);
	}
	return regions;
}
 
Example 4
Source File: ElementImpl.java    From xtext-core with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Element> getContainment() {
	if (containment == null) {
		containment = new EObjectContainmentWithInverseEList.Resolving<Element>(Element.class, this, CrossContainmentPackage.ELEMENT__CONTAINMENT, CrossContainmentPackage.ELEMENT__CONTAINER);
	}
	return containment;
}
 
Example 5
Source File: TaskImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Execute> getExecute ()
{
    if ( execute == null )
    {
        execute = new EObjectContainmentWithInverseEList.Resolving<Execute> ( Execute.class, this, RecipePackage.TASK__EXECUTE, RecipePackage.EXECUTE__TASK );
    }
    return execute;
}
 
Example 6
Source File: StatechartImpl.java    From statecharts with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc --> <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<Region> getRegions() {
	if (regions == null) {
		regions = new EObjectContainmentWithInverseEList.Resolving<Region>(Region.class, this, SGraphPackage.STATECHART__REGIONS, SGraphPackage.REGION__COMPOSITE);
	}
	return regions;
}
 
Example 7
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<Local> getLocals ()
{
    if ( locals == null )
    {
        locals = new EObjectContainmentWithInverseEList.Resolving<Local> ( Local.class, this, GlobalizePackage.GLOBAL__LOCALS, GlobalizePackage.LOCAL__GLOBAL );
    }
    return locals;
}
 
Example 8
Source File: NodeImpl.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<Endpoint> getEndpoints ()
{
    if ( endpoints == null )
    {
        endpoints = new EObjectContainmentWithInverseEList.Resolving<Endpoint> ( Endpoint.class, this, WorldPackage.NODE__ENDPOINTS, WorldPackage.ENDPOINT__NODE );
    }
    return endpoints;
}
 
Example 9
Source File: ItemImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<ItemFeatureEntry> getItemFeatures ()
{
    if ( itemFeatures == null )
    {
        itemFeatures = new EObjectContainmentWithInverseEList.Resolving<ItemFeatureEntry> ( ItemFeatureEntry.class, this, OsgiPackage.ITEM__ITEM_FEATURES, OsgiPackage.ITEM_FEATURE_ENTRY__ITEM );
    }
    return itemFeatures;
}
 
Example 10
Source File: DaveDeviceImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<DaveBlockDefinition> getBlocks ()
{
    if ( blocks == null )
    {
        blocks = new EObjectContainmentWithInverseEList.Resolving<DaveBlockDefinition> ( DaveBlockDefinition.class, this, DavePackage.DAVE_DEVICE__BLOCKS, DavePackage.DAVE_BLOCK_DEFINITION__DEVICE );
    }
    return blocks;
}
 
Example 11
Source File: ProtocolImpl.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<Message> getMessages ()
{
    if ( messages == null )
    {
        messages = new EObjectContainmentWithInverseEList.Resolving<Message> ( Message.class, this, ProtocolPackage.PROTOCOL__MESSAGES, ProtocolPackage.MESSAGE__PROTOCOL );
    }
    return messages;
}
 
Example 12
Source File: NodeImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Device> getDevices ()
{
    if ( devices == null )
    {
        devices = new EObjectContainmentWithInverseEList.Resolving<Device> ( Device.class, this, InfrastructurePackage.NODE__DEVICES, InfrastructurePackage.DEVICE__NODE );
    }
    return devices;
}
 
Example 13
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<Driver> getDrivers ()
{
    if ( drivers == null )
    {
        drivers = new EObjectContainmentWithInverseEList.Resolving<Driver> ( Driver.class, this, InfrastructurePackage.SYSTEM_NODE__DRIVERS, InfrastructurePackage.DRIVER__NODE );
    }
    return drivers;
}
 
Example 14
Source File: StateImpl.java    From statecharts with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc --> <!-- end-user-doc -->
 * @generated
 */
public EList<Region> getRegions() {
	if (regions == null) {
		regions = new EObjectContainmentWithInverseEList.Resolving<Region>(Region.class, this, SGraphPackage.STATE__REGIONS, SGraphPackage.REGION__COMPOSITE);
	}
	return regions;
}
 
Example 15
Source File: CompositePipelineImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Step> getSteps ()
{
    if ( steps == null )
    {
        steps = new EObjectContainmentWithInverseEList.Resolving<Step> ( Step.class, this, ItemPackage.COMPOSITE_PIPELINE__STEPS, ItemPackage.STEP__CONTAINING_PIPELINE );
    }
    return steps;
}
 
Example 16
Source File: LevelImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Level> getLevels ()
{
    if ( levels == null )
    {
        levels = new EObjectContainmentWithInverseEList.Resolving<Level> ( Level.class, this, ComponentPackage.LEVEL__LEVELS, ComponentPackage.LEVEL__PARENT );
    }
    return levels;
}
 
Example 17
Source File: LevelImpl.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 EObjectContainmentWithInverseEList.Resolving<Component> ( Component.class, this, ComponentPackage.LEVEL__COMPONENTS, ComponentPackage.COMPONENT__LEVEL );
    }
    return components;
}
 
Example 18
Source File: VertexImpl.java    From statecharts with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Transition> getOutgoingTransitions() {
	if (outgoingTransitions == null) {
		outgoingTransitions = new EObjectContainmentWithInverseEList.Resolving<Transition>(Transition.class, this, SGraphPackage.VERTEX__OUTGOING_TRANSITIONS, SGraphPackage.TRANSITION__SOURCE);
	}
	return outgoingTransitions;
}
 
Example 19
Source File: ProtocolImpl.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<Interface> getInterfaces ()
{
    if ( interfaces == null )
    {
        interfaces = new EObjectContainmentWithInverseEList.Resolving<Interface> ( Interface.class, this, ProtocolPackage.PROTOCOL__INTERFACES, ProtocolPackage.INTERFACE__PROTOCOL );
    }
    return interfaces;
}
 
Example 20
Source File: RegionImpl.java    From statecharts with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Vertex> getVertices() {
	if (vertices == null) {
		vertices = new EObjectContainmentWithInverseEList.Resolving<Vertex>(Vertex.class, this, SGraphPackage.REGION__VERTICES, SGraphPackage.VERTEX__PARENT_REGION);
	}
	return vertices;
}