当前位置: 首页>>代码示例>>Java>>正文


Java Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS属性代码示例

本文整理汇总了Java中org.eclipse.bpmn2.Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS属性的典型用法代码示例。如果您正苦于以下问题:Java Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS属性的具体用法?Java Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS怎么用?Java Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.eclipse.bpmn2.Bpmn2Package的用法示例。


在下文中一共展示了Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS属性的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: eInverseAdd

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@SuppressWarnings("unchecked")
@Override
public NotificationChain eInverseAdd(InternalEObject otherEnd,
		int featureID, NotificationChain msgs) {
	switch (featureID) {
	case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS:
		return ((InternalEList<InternalEObject>) (InternalEList<?>) getDataInputRefs())
				.basicAdd(otherEnd, msgs);
	case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS:
		return ((InternalEList<InternalEObject>) (InternalEList<?>) getOptionalInputRefs())
				.basicAdd(otherEnd, msgs);
	case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS:
		return ((InternalEList<InternalEObject>) (InternalEList<?>) getWhileExecutingInputRefs())
				.basicAdd(otherEnd, msgs);
	case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS:
		return ((InternalEList<InternalEObject>) (InternalEList<?>) getOutputSetRefs())
				.basicAdd(otherEnd, msgs);
	}
	return super.eInverseAdd(otherEnd, featureID, msgs);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:25,代码来源:InputSetImpl.java

示例2: eInverseRemove

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
		int featureID, NotificationChain msgs) {
	switch (featureID) {
	case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS:
		return ((InternalEList<?>) getDataInputRefs()).basicRemove(
				otherEnd, msgs);
	case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS:
		return ((InternalEList<?>) getOptionalInputRefs()).basicRemove(
				otherEnd, msgs);
	case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS:
		return ((InternalEList<?>) getWhileExecutingInputRefs())
				.basicRemove(otherEnd, msgs);
	case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS:
		return ((InternalEList<?>) getOutputSetRefs()).basicRemove(
				otherEnd, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:24,代码来源:InputSetImpl.java

示例3: eGet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
	switch (featureID) {
	case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS:
		return getDataInputRefs();
	case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS:
		return getOptionalInputRefs();
	case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS:
		return getWhileExecutingInputRefs();
	case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS:
		return getOutputSetRefs();
	case Bpmn2Package.INPUT_SET__NAME:
		return getName();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:21,代码来源:InputSetImpl.java

示例4: eUnset

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eUnset(int featureID) {
	switch (featureID) {
	case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS:
		getDataInputRefs().clear();
		return;
	case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS:
		getOptionalInputRefs().clear();
		return;
	case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS:
		getWhileExecutingInputRefs().clear();
		return;
	case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS:
		getOutputSetRefs().clear();
		return;
	case Bpmn2Package.INPUT_SET__NAME:
		setName(NAME_EDEFAULT);
		return;
	}
	super.eUnset(featureID);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:26,代码来源:InputSetImpl.java

示例5: eIsSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public boolean eIsSet(int featureID) {
	switch (featureID) {
	case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS:
		return dataInputRefs != null && !dataInputRefs.isEmpty();
	case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS:
		return optionalInputRefs != null && !optionalInputRefs.isEmpty();
	case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS:
		return whileExecutingInputRefs != null
				&& !whileExecutingInputRefs.isEmpty();
	case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS:
		return outputSetRefs != null && !outputSetRefs.isEmpty();
	case Bpmn2Package.INPUT_SET__NAME:
		return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT
				.equals(name);
	}
	return super.eIsSet(featureID);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:23,代码来源:InputSetImpl.java

示例6: getInputSetWithWhileExecuting

/**
 * <!-- 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;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:14,代码来源:DataInputImpl.java

示例7: getWhileExecutingInputRefs

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<DataInput> getWhileExecutingInputRefs() {
	if (whileExecutingInputRefs == null) {
		whileExecutingInputRefs = new EObjectWithInverseEList.ManyInverse<DataInput>(
				DataInput.class, this,
				Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS,
				Bpmn2Package.DATA_INPUT__INPUT_SET_WITH_WHILE_EXECUTING);
	}
	return whileExecutingInputRefs;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:14,代码来源:InputSetImpl.java

示例8: eSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
	switch (featureID) {
	case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS:
		getDataInputRefs().clear();
		getDataInputRefs().addAll(
				(Collection<? extends DataInput>) newValue);
		return;
	case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS:
		getOptionalInputRefs().clear();
		getOptionalInputRefs().addAll(
				(Collection<? extends DataInput>) newValue);
		return;
	case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS:
		getWhileExecutingInputRefs().clear();
		getWhileExecutingInputRefs().addAll(
				(Collection<? extends DataInput>) newValue);
		return;
	case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS:
		getOutputSetRefs().clear();
		getOutputSetRefs().addAll(
				(Collection<? extends OutputSet>) newValue);
		return;
	case Bpmn2Package.INPUT_SET__NAME:
		setName((String) newValue);
		return;
	}
	super.eSet(featureID, newValue);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:35,代码来源:InputSetImpl.java


注:本文中的org.eclipse.bpmn2.Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。