/** */ package rba.core; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Operator'. * * * * * * *

* The following features are supported: *

* * * @see rba.core.RBACorePackage#getOperator() * @model abstract="true" * @generated */ public interface Operator extends Expression { /** * Returns the value of the 'Operand' containment reference list. * The list contents are of type {@link rba.core.Expression}. * * * * * * @return the value of the 'Operand' containment reference list. * @see rba.core.RBACorePackage#getOperator_Operand() * @model containment="true" required="true" * @generated */ EList getOperand(); /** * * * * * * @model kind="operation" * @generated */ String getSymbol(); } // Operator