/** */ package at.bestsolution.efxclipse.tooling.css.cssDsl; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>term</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getNumber <em>Number</em>}</li> * <li>{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getStringValue <em>String Value</em>}</li> * <li>{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getIdentifier <em>Identifier</em>}</li> * <li>{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getUrl <em>Url</em>}</li> * <li>{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getFunction <em>Function</em>}</li> * <li>{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getHexColor <em>Hex Color</em>}</li> * </ul> * </p> * * @see at.bestsolution.efxclipse.tooling.css.cssDsl.CssDslPackage#getterm() * @model * @generated */ public interface term extends EObject { /** * Returns the value of the '<em><b>Number</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Number</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Number</em>' attribute. * @see #setNumber(String) * @see at.bestsolution.efxclipse.tooling.css.cssDsl.CssDslPackage#getterm_Number() * @model * @generated */ String getNumber(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getNumber <em>Number</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Number</em>' attribute. * @see #getNumber() * @generated */ void setNumber(String value); /** * Returns the value of the '<em><b>String Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>String Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>String Value</em>' attribute. * @see #setStringValue(String) * @see at.bestsolution.efxclipse.tooling.css.cssDsl.CssDslPackage#getterm_StringValue() * @model * @generated */ String getStringValue(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getStringValue <em>String Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>String Value</em>' attribute. * @see #getStringValue() * @generated */ void setStringValue(String value); /** * Returns the value of the '<em><b>Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Identifier</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Identifier</em>' attribute. * @see #setIdentifier(String) * @see at.bestsolution.efxclipse.tooling.css.cssDsl.CssDslPackage#getterm_Identifier() * @model * @generated */ String getIdentifier(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getIdentifier <em>Identifier</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Identifier</em>' attribute. * @see #getIdentifier() * @generated */ void setIdentifier(String value); /** * Returns the value of the '<em><b>Url</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Url</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>Url</em>' containment reference. * @see #setUrl(URLType) * @see at.bestsolution.efxclipse.tooling.css.cssDsl.CssDslPackage#getterm_Url() * @model containment="true" * @generated */ URLType getUrl(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getUrl <em>Url</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Url</em>' containment reference. * @see #getUrl() * @generated */ void setUrl(URLType value); /** * Returns the value of the '<em><b>Function</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Function</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>Function</em>' containment reference. * @see #setFunction(function) * @see at.bestsolution.efxclipse.tooling.css.cssDsl.CssDslPackage#getterm_Function() * @model containment="true" * @generated */ function getFunction(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getFunction <em>Function</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Function</em>' containment reference. * @see #getFunction() * @generated */ void setFunction(function value); /** * Returns the value of the '<em><b>Hex Color</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Hex Color</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Hex Color</em>' attribute. * @see #setHexColor(String) * @see at.bestsolution.efxclipse.tooling.css.cssDsl.CssDslPackage#getterm_HexColor() * @model * @generated */ String getHexColor(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.tooling.css.cssDsl.term#getHexColor <em>Hex Color</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Hex Color</em>' attribute. * @see #getHexColor() * @generated */ void setHexColor(String value); } // term