/** * <copyright> * </copyright> * */ package at.bestsolution.e4.jfx.xtext.jFXCss; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>HSB Color</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link at.bestsolution.e4.jfx.xtext.jFXCss.HSBColor#getHue <em>Hue</em>}</li> * <li>{@link at.bestsolution.e4.jfx.xtext.jFXCss.HSBColor#getSaturation <em>Saturation</em>}</li> * <li>{@link at.bestsolution.e4.jfx.xtext.jFXCss.HSBColor#getBrightness <em>Brightness</em>}</li> * <li>{@link at.bestsolution.e4.jfx.xtext.jFXCss.HSBColor#getAlpha <em>Alpha</em>}</li> * </ul> * </p> * * @see at.bestsolution.e4.jfx.xtext.jFXCss.JFXCssPackage#getHSBColor() * @model * @generated */ public interface HSBColor extends ColorValue { /** * Returns the value of the '<em><b>Hue</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Hue</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>Hue</em>' containment reference. * @see #setHue(NumberValue) * @see at.bestsolution.e4.jfx.xtext.jFXCss.JFXCssPackage#getHSBColor_Hue() * @model containment="true" * @generated */ NumberValue getHue(); /** * Sets the value of the '{@link at.bestsolution.e4.jfx.xtext.jFXCss.HSBColor#getHue <em>Hue</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Hue</em>' containment reference. * @see #getHue() * @generated */ void setHue(NumberValue value); /** * Returns the value of the '<em><b>Saturation</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Saturation</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>Saturation</em>' containment reference. * @see #setSaturation(NumberValue) * @see at.bestsolution.e4.jfx.xtext.jFXCss.JFXCssPackage#getHSBColor_Saturation() * @model containment="true" * @generated */ NumberValue getSaturation(); /** * Sets the value of the '{@link at.bestsolution.e4.jfx.xtext.jFXCss.HSBColor#getSaturation <em>Saturation</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Saturation</em>' containment reference. * @see #getSaturation() * @generated */ void setSaturation(NumberValue value); /** * Returns the value of the '<em><b>Brightness</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Brightness</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>Brightness</em>' containment reference. * @see #setBrightness(NumberValue) * @see at.bestsolution.e4.jfx.xtext.jFXCss.JFXCssPackage#getHSBColor_Brightness() * @model containment="true" * @generated */ NumberValue getBrightness(); /** * Sets the value of the '{@link at.bestsolution.e4.jfx.xtext.jFXCss.HSBColor#getBrightness <em>Brightness</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Brightness</em>' containment reference. * @see #getBrightness() * @generated */ void setBrightness(NumberValue value); /** * Returns the value of the '<em><b>Alpha</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Alpha</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>Alpha</em>' containment reference. * @see #setAlpha(NumberValue) * @see at.bestsolution.e4.jfx.xtext.jFXCss.JFXCssPackage#getHSBColor_Alpha() * @model containment="true" * @generated */ NumberValue getAlpha(); /** * Sets the value of the '{@link at.bestsolution.e4.jfx.xtext.jFXCss.HSBColor#getAlpha <em>Alpha</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Alpha</em>' containment reference. * @see #getAlpha() * @generated */ void setAlpha(NumberValue value); } // HSBColor