/** */ package rba.view.impl; import java.lang.reflect.InvocationTargetException; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import rba.core.ExpressionType; import rba.core.impl.SetExpressionImpl; import rba.view.AllInstanceOfViewContent; import rba.view.RBAViewPackage; /** * An implementation of the model object 'All Instance Of View Content'. * * @generated */ public class AllInstanceOfViewContentImpl extends SetExpressionImpl implements AllInstanceOfViewContent { /** * * @generated */ protected AllInstanceOfViewContentImpl() { super(); } /** * * @generated */ @Override protected EClass eStaticClass() { return RBAViewPackage.Literals.ALL_INSTANCE_OF_VIEW_CONTENT; } /** * * @generated */ public String getExpressionText() { return "ALL_VIEWCONTENTS"; } /** * * @generated */ public ExpressionType getUnderlyingType() { return ExpressionType.SET_OF_CONTENT; } /** * * @generated */ @Override public Object eInvoke(int operationID, EList arguments) throws InvocationTargetException { switch (operationID) { case RBAViewPackage.ALL_INSTANCE_OF_VIEW_CONTENT___GET_EXPRESSION_TEXT: return getExpressionText(); case RBAViewPackage.ALL_INSTANCE_OF_VIEW_CONTENT___GET_UNDERLYING_TYPE: return getUnderlyingType(); } return super.eInvoke(operationID, arguments); } } // AllInstanceOfViewContentImpl