Java Code Examples for org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList#ManyInverse

The following examples show how to use org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList#ManyInverse . 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: StreamImpl.java    From scava with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Task> getInputOf() {
	if (inputOf == null) {
		inputOf = new EObjectWithInverseResolvingEList.ManyInverse<Task>(Task.class, this, CrossflowPackage.STREAM__INPUT_OF, CrossflowPackage.TASK__INPUT);
	}
	return inputOf;
}
 
Example 2
Source File: StreamImpl.java    From scava with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Task> getOutputOf() {
	if (outputOf == null) {
		outputOf = new EObjectWithInverseResolvingEList.ManyInverse<Task>(Task.class, this, CrossflowPackage.STREAM__OUTPUT_OF, CrossflowPackage.TASK__OUTPUT);
	}
	return outputOf;
}
 
Example 3
Source File: TaskImpl.java    From scava with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Stream> getInput() {
	if (input == null) {
		input = new EObjectWithInverseResolvingEList.ManyInverse<Stream>(Stream.class, this, CrossflowPackage.TASK__INPUT, CrossflowPackage.STREAM__INPUT_OF);
	}
	return input;
}
 
Example 4
Source File: TaskImpl.java    From scava with Eclipse Public License 2.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Stream> getOutput() {
	if (output == null) {
		output = new EObjectWithInverseResolvingEList.ManyInverse<Stream>(Stream.class, this, CrossflowPackage.TASK__OUTPUT, CrossflowPackage.STREAM__OUTPUT_OF);
	}
	return output;
}
 
Example 5
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 6
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 7
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 8
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 9
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 10
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 11
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 12
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 13
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;
}