/** */ package rba.sound.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.sound.IsOutputted; import rba.sound.RBASoundPackage; /** * An implementation of the model object 'Is Outputted'. * * @generated */ public class IsOutputtedImpl extends ZoneOperatorImpl implements IsOutputted { /** * * @generated */ protected IsOutputtedImpl() { super(); } /** * * @generated */ @Override protected EClass eStaticClass() { return RBASoundPackage.Literals.IS_OUTPUTTED; } /** * * @generated */ public String getSymbol() { return ".isOutputted()"; } /** * * @generated */ public ExpressionType getUnderlyingType() { return ExpressionType.BOOLEAN; } /** * * @generated */ @Override public Object eInvoke(int operationID, EList arguments) throws InvocationTargetException { switch (operationID) { case RBASoundPackage.IS_OUTPUTTED___GET_SYMBOL: return getSymbol(); case RBASoundPackage.IS_OUTPUTTED___GET_UNDERLYING_TYPE: return getUnderlyingType(); } return super.eInvoke(operationID, arguments); } } // IsOutputtedImpl