/** * <copyright> * </copyright> * * $Id$ */ package net.sf.etl.samples.ej.ast; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Parameter</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.etl.samples.ej.ast.Parameter#getFinalModifier <em>Final Modifier</em>}</li> * <li>{@link net.sf.etl.samples.ej.ast.Parameter#getClassifier <em>Classifier</em>}</li> * </ul> * </p> * * @see net.sf.etl.samples.ej.ast.AstPackage#getParameter() * @model * @generated */ public interface Parameter extends NamedElement { /** * Returns the value of the '<em><b>Final Modifier</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Final Modifier</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Final Modifier</em>' containment reference. * @see #setFinalModifier(Modifier) * @see net.sf.etl.samples.ej.ast.AstPackage#getParameter_FinalModifier() * @model containment="true" resolveProxies="false" * @generated */ Modifier getFinalModifier(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.Parameter#getFinalModifier <em>Final Modifier</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Final Modifier</em>' containment reference. * @see #getFinalModifier() * @generated */ void setFinalModifier(Modifier value); /** * Returns the value of the '<em><b>Classifier</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Classifier</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Classifier</em>' containment reference. * @see #setClassifier(Expression) * @see net.sf.etl.samples.ej.ast.AstPackage#getParameter_Classifier() * @model containment="true" resolveProxies="false" * @generated */ Expression getClassifier(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.Parameter#getClassifier <em>Classifier</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Classifier</em>' containment reference. * @see #getClassifier() * @generated */ void setClassifier(Expression value); } // Parameter