本文整理匯總了Java中org.eclipse.dd.di.DiPackage.PLANE__PLANE_ELEMENT屬性的典型用法代碼示例。如果您正苦於以下問題:Java DiPackage.PLANE__PLANE_ELEMENT屬性的具體用法?Java DiPackage.PLANE__PLANE_ELEMENT怎麽用?Java DiPackage.PLANE__PLANE_ELEMENT使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.eclipse.dd.di.DiPackage
的用法示例。
在下文中一共展示了DiPackage.PLANE__PLANE_ELEMENT屬性的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(Plane.class)) {
case DiPackage.PLANE__PLANE_ELEMENT:
fireNotifyChanged(new ViewerNotification(notification,
notification.getNotifier(), true, false));
return;
}
super.notifyChanged(notification);
}
示例2: getPlaneElement
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public List<DiagramElement> getPlaneElement() {
if (planeElement == null) {
planeElement = new EObjectContainmentEList<DiagramElement>(
DiagramElement.class, this, DiPackage.PLANE__PLANE_ELEMENT);
}
return planeElement;
}
示例3: eInverseRemove
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
int featureID, NotificationChain msgs) {
switch (featureID) {
case DiPackage.PLANE__PLANE_ELEMENT:
return ((InternalEList<?>) getPlaneElement()).basicRemove(otherEnd,
msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
示例4: eGet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case DiPackage.PLANE__PLANE_ELEMENT:
return getPlaneElement();
}
return super.eGet(featureID, resolve, coreType);
}
示例5: eSet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case DiPackage.PLANE__PLANE_ELEMENT:
getPlaneElement().clear();
getPlaneElement().addAll(
(Collection<? extends DiagramElement>) newValue);
return;
}
super.eSet(featureID, newValue);
}
示例6: eUnset
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case DiPackage.PLANE__PLANE_ELEMENT:
getPlaneElement().clear();
return;
}
super.eUnset(featureID);
}
示例7: eIsSet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case DiPackage.PLANE__PLANE_ELEMENT:
return planeElement != null && !planeElement.isEmpty();
}
return super.eIsSet(featureID);
}