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

The following examples show how to use org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList. 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: LinkEventDefinitionImpl.java    From fixflow with Apache License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<LinkEventDefinition> getSource() {
    if (source == null) {
        source = new EObjectWithInverseResolvingEList<LinkEventDefinition>(
                LinkEventDefinition.class, this, Bpmn2Package.LINK_EVENT_DEFINITION__SOURCE,
                Bpmn2Package.LINK_EVENT_DEFINITION__TARGET);
    }
    return source;
}
 
Example #2
Source File: IntermediateThrowSignalEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getOutgoing() {
       if (outgoing == null) {
           outgoing = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.INTERMEDIATE_THROW_SIGNAL_EVENT__OUTGOING, ProcessPackage.CONNECTION__SOURCE);
       }
       return outgoing;
   }
 
Example #3
Source File: BoundaryEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getOutgoing() {
       if (outgoing == null) {
           outgoing = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.BOUNDARY_EVENT__OUTGOING, ProcessPackage.CONNECTION__SOURCE);
       }
       return outgoing;
   }
 
Example #4
Source File: StartSignalEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getIncoming() {
       if (incoming == null) {
           incoming = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.START_SIGNAL_EVENT__INCOMING, ProcessPackage.CONNECTION__TARGET);
       }
       return incoming;
   }
 
Example #5
Source File: StartErrorEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getOutgoing() {
       if (outgoing == null) {
           outgoing = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.START_ERROR_EVENT__OUTGOING, ProcessPackage.CONNECTION__SOURCE);
       }
       return outgoing;
   }
 
Example #6
Source File: StartErrorEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getIncoming() {
       if (incoming == null) {
           incoming = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.START_ERROR_EVENT__INCOMING, ProcessPackage.CONNECTION__TARGET);
       }
       return incoming;
   }
 
Example #7
Source File: IntermediateCatchSignalEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getOutgoing() {
       if (outgoing == null) {
           outgoing = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.INTERMEDIATE_CATCH_SIGNAL_EVENT__OUTGOING, ProcessPackage.CONNECTION__SOURCE);
       }
       return outgoing;
   }
 
Example #8
Source File: IntermediateCatchSignalEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getIncoming() {
       if (incoming == null) {
           incoming = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.INTERMEDIATE_CATCH_SIGNAL_EVENT__INCOMING, ProcessPackage.CONNECTION__TARGET);
       }
       return incoming;
   }
 
Example #9
Source File: SendTaskImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<MessageFlow> getOutgoingMessages() {
       if (outgoingMessages == null) {
           outgoingMessages = new EObjectWithInverseResolvingEList<MessageFlow>(MessageFlow.class, this, ProcessPackage.SEND_TASK__OUTGOING_MESSAGES, ProcessPackage.MESSAGE_FLOW__SOURCE);
       }
       return outgoingMessages;
   }
 
Example #10
Source File: EndSignalEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getOutgoing() {
       if (outgoing == null) {
           outgoing = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.END_SIGNAL_EVENT__OUTGOING, ProcessPackage.CONNECTION__SOURCE);
       }
       return outgoing;
   }
 
Example #11
Source File: EndSignalEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getIncoming() {
       if (incoming == null) {
           incoming = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.END_SIGNAL_EVENT__INCOMING, ProcessPackage.CONNECTION__TARGET);
       }
       return incoming;
   }
 
Example #12
Source File: CatchLinkEventImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<ThrowLinkEvent> getFrom() {
       if (from == null) {
           from = new EObjectWithInverseResolvingEList<ThrowLinkEvent>(ThrowLinkEvent.class, this, ProcessPackage.CATCH_LINK_EVENT__FROM, ProcessPackage.THROW_LINK_EVENT__TO);
       }
       return from;
   }
 
Example #13
Source File: FlowElementImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
    * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
    * @generated
    */
@Override
public EList<Connection> getIncoming() {
       if (incoming == null) {
           incoming = new EObjectWithInverseResolvingEList<Connection>(Connection.class, this, ProcessPackage.FLOW_ELEMENT__INCOMING, ProcessPackage.CONNECTION__TARGET);
       }
       return incoming;
   }
 
Example #14
Source File: ReferenceSlotImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 *
 * @generated
 */
@Override
public EList<Instance> getValues() {
	if (values == null) {
		values = new EObjectWithInverseResolvingEList.ManyInverse<Instance>(Instance.class, this,
			MigrationPackage.REFERENCE_SLOT__VALUES, MigrationPackage.INSTANCE__REFERENCES);
	}
	return values;
}
 
Example #15
Source File: FlowNodeImpl.java    From fixflow with Apache License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc --> <!-- end-user-doc -->
 * 
 * @generated
 */
public List<Lane> getLanes() {
	if (lanes == null) {
		lanes = new EObjectWithInverseResolvingEList.ManyInverse<Lane>(Lane.class, this, Bpmn2Package.FLOW_NODE__LANES,
				Bpmn2Package.LANE__FLOW_NODE_REFS);
	}
	return lanes;
}
 
Example #16
Source File: InstanceImpl.java    From bonita-studio with GNU General Public License v2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc --> <!-- end-user-doc -->
 *
 * @generated
 */
@Override
public EList<ReferenceSlot> getReferences() {
    if (references == null) {
        references = new EObjectWithInverseResolvingEList.ManyInverse<ReferenceSlot>(ReferenceSlot.class, this,
                MigrationPackage.INSTANCE__REFERENCES, MigrationPackage.REFERENCE_SLOT__VALUES);
    }
    return references;
}
 
Example #17
Source File: DataOutputImpl.java    From fixflow with Apache License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<OutputSet> getOutputSetRefs() {
    if (outputSetRefs == null) {
        outputSetRefs = new EObjectWithInverseResolvingEList.ManyInverse<OutputSet>(
                OutputSet.class, this, Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_REFS,
                Bpmn2Package.OUTPUT_SET__DATA_OUTPUT_REFS);
    }
    return outputSetRefs;
}
 
Example #18
Source File: DataOutputImpl.java    From fixflow with Apache License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<OutputSet> getOutputSetWithWhileExecuting() {
    if (outputSetWithWhileExecuting == null) {
        outputSetWithWhileExecuting = new EObjectWithInverseResolvingEList.ManyInverse<OutputSet>(
                OutputSet.class, this,
                Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_WHILE_EXECUTING,
                Bpmn2Package.OUTPUT_SET__WHILE_EXECUTING_OUTPUT_REFS);
    }
    return outputSetWithWhileExecuting;
}
 
Example #19
Source File: DataOutputImpl.java    From fixflow with Apache License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<OutputSet> getOutputSetWithOptional() {
    if (outputSetWithOptional == null) {
        outputSetWithOptional = new EObjectWithInverseResolvingEList.ManyInverse<OutputSet>(
                OutputSet.class, this, Bpmn2Package.DATA_OUTPUT__OUTPUT_SET_WITH_OPTIONAL,
                Bpmn2Package.OUTPUT_SET__OPTIONAL_OUTPUT_REFS);
    }
    return outputSetWithOptional;
}
 
Example #20
Source File: DataInputImpl.java    From fixflow with Apache License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<InputSet> getInputSetRefs() {
    if (inputSetRefs == null) {
        inputSetRefs = new EObjectWithInverseResolvingEList.ManyInverse<InputSet>(
                InputSet.class, this, Bpmn2Package.DATA_INPUT__INPUT_SET_REFS,
                Bpmn2Package.INPUT_SET__DATA_INPUT_REFS);
    }
    return inputSetRefs;
}
 
Example #21
Source File: DataInputImpl.java    From fixflow with Apache License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<InputSet> getInputSetWithWhileExecuting() {
    if (inputSetWithWhileExecuting == null) {
        inputSetWithWhileExecuting = new EObjectWithInverseResolvingEList.ManyInverse<InputSet>(
                InputSet.class, this, Bpmn2Package.DATA_INPUT__INPUT_SET_WITH_WHILE_EXECUTING,
                Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS);
    }
    return inputSetWithWhileExecuting;
}
 
Example #22
Source File: DataInputImpl.java    From fixflow with Apache License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<InputSet> getInputSetWithOptional() {
    if (inputSetWithOptional == null) {
        inputSetWithOptional = new EObjectWithInverseResolvingEList.ManyInverse<InputSet>(
                InputSet.class, this, Bpmn2Package.DATA_INPUT__INPUT_SET_WITH_OPTIONAL,
                Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS);
    }
    return inputSetWithOptional;
}
 
Example #23
Source File: LandingEventImpl.java    From ifml-editor with MIT License 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<JumpEvent> getJumpingEvents() {
	if (jumpingEvents == null) {
		jumpingEvents = new EObjectWithInverseResolvingEList<JumpEvent>(JumpEvent.class, this, ExtensionsPackage.LANDING_EVENT__JUMPING_EVENTS, ExtensionsPackage.JUMP_EVENT__LANDING_EVENT);
	}
	return jumpingEvents;
}
 
Example #24
Source File: ModuleDefinitionImpl.java    From ifml-editor with MIT License 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<IFMLModule> getModules() {
	if (modules == null) {
		modules = new EObjectWithInverseResolvingEList<IFMLModule>(IFMLModule.class, this, CorePackage.MODULE_DEFINITION__MODULES, CorePackage.IFML_MODULE__MODULE_DEFINITION);
	}
	return modules;
}
 
Example #25
Source File: DataBindingImpl.java    From ifml-editor with MIT License 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<DataContextVariable> getDataContextVariables() {
	if (dataContextVariables == null) {
		dataContextVariables = new EObjectWithInverseResolvingEList<DataContextVariable>(DataContextVariable.class, this, CorePackage.DATA_BINDING__DATA_CONTEXT_VARIABLES, CorePackage.DATA_CONTEXT_VARIABLE__DATA_BINDING);
	}
	return dataContextVariables;
}
 
Example #26
Source File: PortDefinitionImpl.java    From ifml-editor with MIT License 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<IFMLPort> getPorts() {
	if (ports == null) {
		ports = new EObjectWithInverseResolvingEList<IFMLPort>(IFMLPort.class, this, CorePackage.PORT_DEFINITION__PORTS, CorePackage.IFML_PORT__PORT_DEFINITION);
	}
	return ports;
}
 
Example #27
Source File: IFMLModuleImpl.java    From ifml-editor with MIT License 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<IFMLPort> getPorts() {
	if (ports == null) {
		ports = new EObjectWithInverseResolvingEList<IFMLPort>(IFMLPort.class, this, CorePackage.IFML_MODULE__PORTS, CorePackage.IFML_PORT__MODULE);
	}
	return ports;
}
 
Example #28
Source File: IFMLModuleImpl.java    From ifml-editor with MIT License 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<InteractionFlow> getInInteractionFlows() {
	if (inInteractionFlows == null) {
		inInteractionFlows = new EObjectWithInverseResolvingEList<InteractionFlow>(InteractionFlow.class, this, CorePackage.IFML_MODULE__IN_INTERACTION_FLOWS, CorePackage.INTERACTION_FLOW__TARGET_INTERACTION_FLOW_ELEMENT);
	}
	return inInteractionFlows;
}
 
Example #29
Source File: ConditionalExpressionImpl.java    From ifml-editor with MIT License 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<InteractionFlow> getInInteractionFlows() {
	if (inInteractionFlows == null) {
		inInteractionFlows = new EObjectWithInverseResolvingEList<InteractionFlow>(InteractionFlow.class, this, CorePackage.CONDITIONAL_EXPRESSION__IN_INTERACTION_FLOWS, CorePackage.INTERACTION_FLOW__TARGET_INTERACTION_FLOW_ELEMENT);
	}
	return inInteractionFlows;
}
 
Example #30
Source File: InteractionFlowElementImpl.java    From ifml-editor with MIT License 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<InteractionFlow> getInInteractionFlows() {
	if (inInteractionFlows == null) {
		inInteractionFlows = new EObjectWithInverseResolvingEList<InteractionFlow>(InteractionFlow.class, this, CorePackage.INTERACTION_FLOW_ELEMENT__IN_INTERACTION_FLOWS, CorePackage.INTERACTION_FLOW__TARGET_INTERACTION_FLOW_ELEMENT);
	}
	return inInteractionFlows;
}