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


Java DiPackage.DIAGRAM__ID屬性代碼示例

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


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

示例2: eGet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
	switch (featureID) {
	case DiPackage.DIAGRAM__DOCUMENTATION:
		return getDocumentation();
	case DiPackage.DIAGRAM__OWNED_STYLE:
		return getOwnedStyle();
	case DiPackage.DIAGRAM__ROOT_ELEMENT:
		return getRootElement();
	case DiPackage.DIAGRAM__ID:
		return getId();
	case DiPackage.DIAGRAM__NAME:
		return getName();
	case DiPackage.DIAGRAM__RESOLUTION:
		return getResolution();
	}
	return super.eGet(featureID, resolve, coreType);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:23,代碼來源:DiagramImpl.java

示例3: eSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eSet(int featureID, Object newValue) {
	switch (featureID) {
	case DiPackage.DIAGRAM__DOCUMENTATION:
		setDocumentation((String) newValue);
		return;
	case DiPackage.DIAGRAM__ID:
		setId((String) newValue);
		return;
	case DiPackage.DIAGRAM__NAME:
		setName((String) newValue);
		return;
	case DiPackage.DIAGRAM__RESOLUTION:
		setResolution((Float) newValue);
		return;
	}
	super.eSet(featureID, newValue);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:23,代碼來源:DiagramImpl.java

示例4: eUnset

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eUnset(int featureID) {
	switch (featureID) {
	case DiPackage.DIAGRAM__DOCUMENTATION:
		setDocumentation(DOCUMENTATION_EDEFAULT);
		return;
	case DiPackage.DIAGRAM__ID:
		setId(ID_EDEFAULT);
		return;
	case DiPackage.DIAGRAM__NAME:
		setName(NAME_EDEFAULT);
		return;
	case DiPackage.DIAGRAM__RESOLUTION:
		setResolution(RESOLUTION_EDEFAULT);
		return;
	}
	super.eUnset(featureID);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:23,代碼來源:DiagramImpl.java

示例5: eIsSet

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public boolean eIsSet(int featureID) {
	switch (featureID) {
	case DiPackage.DIAGRAM__DOCUMENTATION:
		return DOCUMENTATION_EDEFAULT == null ? documentation != null
				: !DOCUMENTATION_EDEFAULT.equals(documentation);
	case DiPackage.DIAGRAM__OWNED_STYLE:
		return ownedStyle != null && !ownedStyle.isEmpty();
	case DiPackage.DIAGRAM__ROOT_ELEMENT:
		return rootElement != null;
	case DiPackage.DIAGRAM__ID:
		return ID_EDEFAULT == null ? id != null : !ID_EDEFAULT.equals(id);
	case DiPackage.DIAGRAM__NAME:
		return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT
				.equals(name);
	case DiPackage.DIAGRAM__RESOLUTION:
		return resolution != RESOLUTION_EDEFAULT;
	}
	return super.eIsSet(featureID);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:25,代碼來源:DiagramImpl.java


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