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


Java Bpmn2Package.LANE__CHILD_LANE_SET属性代码示例

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


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

示例1: notifyChanged

/**
 * This handles model notifications by calling {@link #updateChildren} to update any cached
 * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void notifyChanged(Notification notification) {
	updateChildren(notification);

	switch (notification.getFeatureID(Lane.class)) {
	case Bpmn2Package.LANE__NAME:
		fireNotifyChanged(new ViewerNotification(notification,
				notification.getNotifier(), false, true));
		return;
	case Bpmn2Package.LANE__PARTITION_ELEMENT:
	case Bpmn2Package.LANE__CHILD_LANE_SET:
		fireNotifyChanged(new ViewerNotification(notification,
				notification.getNotifier(), true, false));
		return;
	}
	super.notifyChanged(notification);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:24,代码来源:LaneItemProvider.java

示例2: basicSetChildLaneSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public NotificationChain basicSetChildLaneSet(LaneSet newChildLaneSet,
		NotificationChain msgs) {
	LaneSet oldChildLaneSet = childLaneSet;
	childLaneSet = newChildLaneSet;
	if (eNotificationRequired()) {
		ENotificationImpl notification = new ENotificationImpl(this,
				Notification.SET, Bpmn2Package.LANE__CHILD_LANE_SET,
				oldChildLaneSet, newChildLaneSet);
		if (msgs == null)
			msgs = notification;
		else
			msgs.add(notification);
	}
	return msgs;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:20,代码来源:LaneImpl.java

示例3: eGet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
	switch (featureID) {
	case Bpmn2Package.LANE__PARTITION_ELEMENT:
		return getPartitionElement();
	case Bpmn2Package.LANE__FLOW_NODE_REFS:
		return getFlowNodeRefs();
	case Bpmn2Package.LANE__CHILD_LANE_SET:
		return getChildLaneSet();
	case Bpmn2Package.LANE__NAME:
		return getName();
	case Bpmn2Package.LANE__PARTITION_ELEMENT_REF:
		if (resolve)
			return getPartitionElementRef();
		return basicGetPartitionElementRef();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:23,代码来源:LaneImpl.java

示例4: eSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
	switch (featureID) {
	case Bpmn2Package.LANE__PARTITION_ELEMENT:
		setPartitionElement((BaseElement) newValue);
		return;
	case Bpmn2Package.LANE__FLOW_NODE_REFS:
		getFlowNodeRefs().clear();
		getFlowNodeRefs().addAll((Collection<? extends FlowNode>) newValue);
		return;
	case Bpmn2Package.LANE__CHILD_LANE_SET:
		setChildLaneSet((LaneSet) newValue);
		return;
	case Bpmn2Package.LANE__NAME:
		setName((String) newValue);
		return;
	case Bpmn2Package.LANE__PARTITION_ELEMENT_REF:
		setPartitionElementRef((BaseElement) newValue);
		return;
	}
	super.eSet(featureID, newValue);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:28,代码来源:LaneImpl.java

示例5: eUnset

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eUnset(int featureID) {
	switch (featureID) {
	case Bpmn2Package.LANE__PARTITION_ELEMENT:
		setPartitionElement((BaseElement) null);
		return;
	case Bpmn2Package.LANE__FLOW_NODE_REFS:
		getFlowNodeRefs().clear();
		return;
	case Bpmn2Package.LANE__CHILD_LANE_SET:
		setChildLaneSet((LaneSet) null);
		return;
	case Bpmn2Package.LANE__NAME:
		setName(NAME_EDEFAULT);
		return;
	case Bpmn2Package.LANE__PARTITION_ELEMENT_REF:
		setPartitionElementRef((BaseElement) null);
		return;
	}
	super.eUnset(featureID);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:26,代码来源:LaneImpl.java

示例6: eIsSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public boolean eIsSet(int featureID) {
	switch (featureID) {
	case Bpmn2Package.LANE__PARTITION_ELEMENT:
		return partitionElement != null;
	case Bpmn2Package.LANE__FLOW_NODE_REFS:
		return flowNodeRefs != null && !flowNodeRefs.isEmpty();
	case Bpmn2Package.LANE__CHILD_LANE_SET:
		return childLaneSet != null;
	case Bpmn2Package.LANE__NAME:
		return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT
				.equals(name);
	case Bpmn2Package.LANE__PARTITION_ELEMENT_REF:
		return partitionElementRef != null;
	}
	return super.eIsSet(featureID);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:22,代码来源:LaneImpl.java

示例7: eInverseRemove

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
		int featureID, NotificationChain msgs) {
	switch (featureID) {
	case Bpmn2Package.LANE__PARTITION_ELEMENT:
		return basicSetPartitionElement(null, msgs);
	case Bpmn2Package.LANE__FLOW_NODE_REFS:
		return ((InternalEList<?>) getFlowNodeRefs()).basicRemove(otherEnd,
				msgs);
	case Bpmn2Package.LANE__CHILD_LANE_SET:
		return basicSetChildLaneSet(null, msgs);
	}
	return super.eInverseRemove(otherEnd, featureID, msgs);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:19,代码来源:LaneImpl.java


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