/** * * * * $Id: Identifier.java,v 1.5 2008/03/07 11:10:43 jkohnlein Exp $ */ package org.eclipse.xpand3; /** * * A representation of the model object 'Identifier'. * * *

* The following features are supported: *

*

* * @see org.eclipse.xpand3.Xpand3Package#getIdentifier() * @model * @generated */ public interface Identifier extends SyntaxElement { /** * Returns the value of the 'Value' attribute. * *

* If the meaning of the 'Value' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value' attribute. * @see #setValue(String) * @see org.eclipse.xpand3.Xpand3Package#getIdentifier_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link org.eclipse.xpand3.Identifier#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(String value); } // Identifier