/** * <copyright> * </copyright> * * $Id$ */ package net.sf.etl.samples.ej.ast; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Plus Op</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.etl.samples.ej.ast.PlusOp#getSummands <em>Summands</em>}</li> * </ul> * </p> * * @see net.sf.etl.samples.ej.ast.AstPackage#getPlusOp() * @model * @generated */ public interface PlusOp extends Expression { /** * Returns the value of the '<em><b>Summands</b></em>' containment reference list. * The list contents are of type {@link net.sf.etl.samples.ej.ast.Expression}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Summands</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Summands</em>' containment reference list. * @see net.sf.etl.samples.ej.ast.AstPackage#getPlusOp_Summands() * @model type="net.sf.etl.samples.ej.ast.Expression" containment="true" resolveProxies="false" lower="2" upper="2" * @generated */ EList getSummands(); } // PlusOp