本文整理汇总了Java中org.eclipse.dd.di.DiPackage.EDGE__WAYPOINT属性的典型用法代码示例。如果您正苦于以下问题:Java DiPackage.EDGE__WAYPOINT属性的具体用法?Java DiPackage.EDGE__WAYPOINT怎么用?Java DiPackage.EDGE__WAYPOINT使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.eclipse.dd.di.DiPackage
的用法示例。
在下文中一共展示了DiPackage.EDGE__WAYPOINT属性的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(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);
}
示例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);
}
示例3: getWaypoint
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public List<Point> getWaypoint() {
if (waypoint == null) {
waypoint = new EObjectContainmentEList<Point>(Point.class, this,
DiPackage.EDGE__WAYPOINT);
}
return waypoint;
}
示例4: eInverseRemove
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
int featureID, NotificationChain msgs) {
switch (featureID) {
case DiPackage.EDGE__WAYPOINT:
return ((InternalEList<?>) getWaypoint()).basicRemove(otherEnd,
msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
示例5: eSet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case DiPackage.EDGE__WAYPOINT:
getWaypoint().clear();
getWaypoint().addAll((Collection<? extends Point>) 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.EDGE__WAYPOINT:
getWaypoint().clear();
return;
}
super.eUnset(featureID);
}
示例7: 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);
}