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


Java Bpmn2Package.CONVERSATION_LINK__SOURCE_REF属性代码示例

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


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

示例1: basicSetSourceRef

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public NotificationChain basicSetSourceRef(InteractionNode newSourceRef,
		NotificationChain msgs) {
	InteractionNode oldSourceRef = sourceRef;
	sourceRef = newSourceRef;
	if (eNotificationRequired()) {
		ENotificationImpl notification = new ENotificationImpl(this,
				Notification.SET,
				Bpmn2Package.CONVERSATION_LINK__SOURCE_REF, oldSourceRef,
				newSourceRef);
		if (msgs == null)
			msgs = notification;
		else
			msgs.add(notification);
	}
	return msgs;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:21,代码来源:ConversationLinkImpl.java

示例2: eInverseAdd

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public NotificationChain eInverseAdd(InternalEObject otherEnd,
		int featureID, NotificationChain msgs) {
	switch (featureID) {
	case Bpmn2Package.CONVERSATION_LINK__SOURCE_REF:
		if (sourceRef != null)
			msgs = ((InternalEObject) sourceRef)
					.eInverseRemove(
							this,
							Bpmn2Package.INTERACTION_NODE__OUTGOING_CONVERSATION_LINKS,
							InteractionNode.class, msgs);
		return basicSetSourceRef((InteractionNode) otherEnd, msgs);
	case Bpmn2Package.CONVERSATION_LINK__TARGET_REF:
		if (targetRef != null)
			msgs = ((InternalEObject) targetRef)
					.eInverseRemove(
							this,
							Bpmn2Package.INTERACTION_NODE__INCOMING_CONVERSATION_LINKS,
							InteractionNode.class, msgs);
		return basicSetTargetRef((InteractionNode) otherEnd, msgs);
	}
	return super.eInverseAdd(otherEnd, featureID, msgs);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:28,代码来源:ConversationLinkImpl.java

示例3: eSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eSet(int featureID, Object newValue) {
	switch (featureID) {
	case Bpmn2Package.CONVERSATION_LINK__NAME:
		setName((String) newValue);
		return;
	case Bpmn2Package.CONVERSATION_LINK__SOURCE_REF:
		setSourceRef((InteractionNode) newValue);
		return;
	case Bpmn2Package.CONVERSATION_LINK__TARGET_REF:
		setTargetRef((InteractionNode) newValue);
		return;
	}
	super.eSet(featureID, newValue);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:20,代码来源:ConversationLinkImpl.java

示例4: eUnset

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eUnset(int featureID) {
	switch (featureID) {
	case Bpmn2Package.CONVERSATION_LINK__NAME:
		setName(NAME_EDEFAULT);
		return;
	case Bpmn2Package.CONVERSATION_LINK__SOURCE_REF:
		setSourceRef((InteractionNode) null);
		return;
	case Bpmn2Package.CONVERSATION_LINK__TARGET_REF:
		setTargetRef((InteractionNode) null);
		return;
	}
	super.eUnset(featureID);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:20,代码来源:ConversationLinkImpl.java

示例5: getOutgoingConversationLinks

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<ConversationLink> getOutgoingConversationLinks() {
	if (outgoingConversationLinks == null) {
		outgoingConversationLinks = new EObjectWithInverseResolvingEList<ConversationLink>(
				ConversationLink.class,
				this,
				Bpmn2Package.CONVERSATION_NODE__OUTGOING_CONVERSATION_LINKS,
				Bpmn2Package.CONVERSATION_LINK__SOURCE_REF);
	}
	return outgoingConversationLinks;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:15,代码来源:ConversationNodeImpl.java

示例6: eInverseRemove

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
		int featureID, NotificationChain msgs) {
	switch (featureID) {
	case Bpmn2Package.CONVERSATION_LINK__SOURCE_REF:
		return basicSetSourceRef(null, msgs);
	case Bpmn2Package.CONVERSATION_LINK__TARGET_REF:
		return basicSetTargetRef(null, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:16,代码来源:ConversationLinkImpl.java

示例7: eGet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
	switch (featureID) {
	case Bpmn2Package.CONVERSATION_LINK__NAME:
		return getName();
	case Bpmn2Package.CONVERSATION_LINK__SOURCE_REF:
		return getSourceRef();
	case Bpmn2Package.CONVERSATION_LINK__TARGET_REF:
		return getTargetRef();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:17,代码来源:ConversationLinkImpl.java

示例8: eIsSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public boolean eIsSet(int featureID) {
	switch (featureID) {
	case Bpmn2Package.CONVERSATION_LINK__NAME:
		return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT
				.equals(name);
	case Bpmn2Package.CONVERSATION_LINK__SOURCE_REF:
		return sourceRef != null;
	case Bpmn2Package.CONVERSATION_LINK__TARGET_REF:
		return targetRef != null;
	}
	return super.eIsSet(featureID);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:18,代码来源:ConversationLinkImpl.java

示例9: getOutgoingConversationLinks

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<ConversationLink> getOutgoingConversationLinks() {
	if (outgoingConversationLinks == null) {
		outgoingConversationLinks = new EObjectWithInverseResolvingEList<ConversationLink>(
				ConversationLink.class, this,
				Bpmn2Package.INTERACTION_NODE__OUTGOING_CONVERSATION_LINKS,
				Bpmn2Package.CONVERSATION_LINK__SOURCE_REF);
	}
	return outgoingConversationLinks;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:14,代码来源:InteractionNodeImpl.java

示例10: getOutgoingConversationLinks

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<ConversationLink> getOutgoingConversationLinks() {
	if (outgoingConversationLinks == null) {
		outgoingConversationLinks = new EObjectWithInverseResolvingEList<ConversationLink>(
				ConversationLink.class, this,
				Bpmn2Package.PARTICIPANT__OUTGOING_CONVERSATION_LINKS,
				Bpmn2Package.CONVERSATION_LINK__SOURCE_REF);
	}
	return outgoingConversationLinks;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:14,代码来源:ParticipantImpl.java

示例11: getOutgoingConversationLinks

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<ConversationLink> getOutgoingConversationLinks() {
	if (outgoingConversationLinks == null) {
		outgoingConversationLinks = new EObjectWithInverseResolvingEList<ConversationLink>(
				ConversationLink.class, this,
				Bpmn2Package.EVENT__OUTGOING_CONVERSATION_LINKS,
				Bpmn2Package.CONVERSATION_LINK__SOURCE_REF);
	}
	return outgoingConversationLinks;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:14,代码来源:EventImpl.java

示例12: getOutgoingConversationLinks

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public List<ConversationLink> getOutgoingConversationLinks() {
	if (outgoingConversationLinks == null) {
		outgoingConversationLinks = new EObjectWithInverseResolvingEList<ConversationLink>(
				ConversationLink.class, this,
				Bpmn2Package.TASK__OUTGOING_CONVERSATION_LINKS,
				Bpmn2Package.CONVERSATION_LINK__SOURCE_REF);
	}
	return outgoingConversationLinks;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:14,代码来源:TaskImpl.java


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