/** * <copyright> * </copyright> * * $Id$ */ package net.sf.etl.samples.ej.ast; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Feature</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.etl.samples.ej.ast.Feature#getVisibilityModifier <em>Visibility Modifier</em>}</li> * <li>{@link net.sf.etl.samples.ej.ast.Feature#getStaticModifier <em>Static Modifier</em>}</li> * <li>{@link net.sf.etl.samples.ej.ast.Feature#getFinalModifier <em>Final Modifier</em>}</li> * </ul> * </p> * * @see net.sf.etl.samples.ej.ast.AstPackage#getFeature() * @model abstract="true" * @generated */ public interface Feature extends ClassifierMemberStatement { /** * Returns the value of the '<em><b>Visibility Modifier</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Visibility 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>Visibility Modifier</em>' containment reference. * @see #setVisibilityModifier(Modifier) * @see net.sf.etl.samples.ej.ast.AstPackage#getFeature_VisibilityModifier() * @model containment="true" resolveProxies="false" * @generated */ Modifier getVisibilityModifier(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.Feature#getVisibilityModifier <em>Visibility Modifier</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Visibility Modifier</em>' containment reference. * @see #getVisibilityModifier() * @generated */ void setVisibilityModifier(Modifier value); /** * Returns the value of the '<em><b>Static Modifier</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Static 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>Static Modifier</em>' containment reference. * @see #setStaticModifier(Modifier) * @see net.sf.etl.samples.ej.ast.AstPackage#getFeature_StaticModifier() * @model containment="true" resolveProxies="false" * @generated */ Modifier getStaticModifier(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.Feature#getStaticModifier <em>Static Modifier</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Static Modifier</em>' containment reference. * @see #getStaticModifier() * @generated */ void setStaticModifier(Modifier value); /** * 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#getFeature_FinalModifier() * @model containment="true" resolveProxies="false" * @generated */ Modifier getFinalModifier(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.Feature#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); } // Feature