當前位置: 首頁>>代碼示例>>Java>>正文


Java DiPackage.EDGE__TARGET屬性代碼示例

本文整理匯總了Java中org.eclipse.dd.di.DiPackage.EDGE__TARGET屬性的典型用法代碼示例。如果您正苦於以下問題:Java DiPackage.EDGE__TARGET屬性的具體用法?Java DiPackage.EDGE__TARGET怎麽用?Java DiPackage.EDGE__TARGET使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在org.eclipse.dd.di.DiPackage的用法示例。


在下文中一共展示了DiPackage.EDGE__TARGET屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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(Edge.class)) {
	case DiPackage.EDGE__SOURCE:
	case DiPackage.EDGE__TARGET:
		fireNotifyChanged(new ViewerNotification(notification,
				notification.getNotifier(), false, true));
		return;
	case DiPackage.EDGE__WAYPOINT:
		fireNotifyChanged(new ViewerNotification(notification,
				notification.getNotifier(), true, false));
		return;
	}
	super.notifyChanged(notification);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:24,代碼來源:EdgeItemProvider.java

示例2: eGet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
	switch (featureID) {
	case DiPackage.EDGE__SOURCE:
		if (resolve)
			return getSource();
		return basicGetSource();
	case DiPackage.EDGE__TARGET:
		if (resolve)
			return getTarget();
		return basicGetTarget();
	case DiPackage.EDGE__WAYPOINT:
		return getWaypoint();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:21,代碼來源:EdgeImpl.java

示例3: eIsSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public boolean eIsSet(int featureID) {
	switch (featureID) {
	case DiPackage.EDGE__SOURCE:
		return source != null;
	case DiPackage.EDGE__TARGET:
		return target != null;
	case DiPackage.EDGE__WAYPOINT:
		return waypoint != null && !waypoint.isEmpty();
	}
	return super.eIsSet(featureID);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:17,代碼來源:EdgeImpl.java


注:本文中的org.eclipse.dd.di.DiPackage.EDGE__TARGET屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。