本文整理汇总了Java中org.eclipse.gemoc.gexpressions.GexpressionsPackage.GIF_EXPRESSION__CONDITION属性的典型用法代码示例。如果您正苦于以下问题:Java GexpressionsPackage.GIF_EXPRESSION__CONDITION属性的具体用法?Java GexpressionsPackage.GIF_EXPRESSION__CONDITION怎么用?Java GexpressionsPackage.GIF_EXPRESSION__CONDITION使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.eclipse.gemoc.gexpressions.GexpressionsPackage
的用法示例。
在下文中一共展示了GexpressionsPackage.GIF_EXPRESSION__CONDITION属性的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: eSet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case GexpressionsPackage.GIF_EXPRESSION__CONDITION:
setCondition((GExpression)newValue);
return;
case GexpressionsPackage.GIF_EXPRESSION__THEN_EXPRESSION:
setThenExpression((GExpression)newValue);
return;
case GexpressionsPackage.GIF_EXPRESSION__ELSE_EXPRESSION:
setElseExpression((GExpression)newValue);
return;
}
super.eSet(featureID, newValue);
}
示例2: eUnset
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case GexpressionsPackage.GIF_EXPRESSION__CONDITION:
setCondition((GExpression)null);
return;
case GexpressionsPackage.GIF_EXPRESSION__THEN_EXPRESSION:
setThenExpression((GExpression)null);
return;
case GexpressionsPackage.GIF_EXPRESSION__ELSE_EXPRESSION:
setElseExpression((GExpression)null);
return;
}
super.eUnset(featureID);
}
示例3: basicSetCondition
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetCondition(GExpression newCondition, NotificationChain msgs) {
GExpression oldCondition = condition;
condition = newCondition;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, GexpressionsPackage.GIF_EXPRESSION__CONDITION, oldCondition, newCondition);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
示例4: eInverseRemove
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case GexpressionsPackage.GIF_EXPRESSION__CONDITION:
return basicSetCondition(null, msgs);
case GexpressionsPackage.GIF_EXPRESSION__THEN_EXPRESSION:
return basicSetThenExpression(null, msgs);
case GexpressionsPackage.GIF_EXPRESSION__ELSE_EXPRESSION:
return basicSetElseExpression(null, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
示例5: eGet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case GexpressionsPackage.GIF_EXPRESSION__CONDITION:
return getCondition();
case GexpressionsPackage.GIF_EXPRESSION__THEN_EXPRESSION:
return getThenExpression();
case GexpressionsPackage.GIF_EXPRESSION__ELSE_EXPRESSION:
return getElseExpression();
}
return super.eGet(featureID, resolve, coreType);
}
示例6: eIsSet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case GexpressionsPackage.GIF_EXPRESSION__CONDITION:
return condition != null;
case GexpressionsPackage.GIF_EXPRESSION__THEN_EXPRESSION:
return thenExpression != null;
case GexpressionsPackage.GIF_EXPRESSION__ELSE_EXPRESSION:
return elseExpression != null;
}
return super.eIsSet(featureID);
}
示例7: 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(GIfExpression.class)) {
case GexpressionsPackage.GIF_EXPRESSION__CONDITION:
case GexpressionsPackage.GIF_EXPRESSION__THEN_EXPRESSION:
case GexpressionsPackage.GIF_EXPRESSION__ELSE_EXPRESSION:
fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false));
return;
}
super.notifyChanged(notification);
}