/** * <copyright> * </copyright> * * $Id$ */ package at.bestsolution.efxclipse.formats.fxg.fxg; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Blur Filter</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link at.bestsolution.efxclipse.formats.fxg.fxg.BlurFilter#getBlurX <em>Blur X</em>}</li> * <li>{@link at.bestsolution.efxclipse.formats.fxg.fxg.BlurFilter#getBlurY <em>Blur Y</em>}</li> * <li>{@link at.bestsolution.efxclipse.formats.fxg.fxg.BlurFilter#getQuality <em>Quality</em>}</li> * </ul> * </p> * * @see at.bestsolution.efxclipse.formats.fxg.fxg.FxgPackage#getBlurFilter() * @model * @generated */ public interface BlurFilter extends Filter { /** * Returns the value of the '<em><b>Blur X</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Blur X</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Blur X</em>' attribute. * @see #setBlurX(Double) * @see at.bestsolution.efxclipse.formats.fxg.fxg.FxgPackage#getBlurFilter_BlurX() * @model * @generated */ Double getBlurX(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.formats.fxg.fxg.BlurFilter#getBlurX <em>Blur X</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Blur X</em>' attribute. * @see #getBlurX() * @generated */ void setBlurX(Double value); /** * Returns the value of the '<em><b>Blur Y</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Blur Y</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Blur Y</em>' attribute. * @see #setBlurY(Double) * @see at.bestsolution.efxclipse.formats.fxg.fxg.FxgPackage#getBlurFilter_BlurY() * @model * @generated */ Double getBlurY(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.formats.fxg.fxg.BlurFilter#getBlurY <em>Blur Y</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Blur Y</em>' attribute. * @see #getBlurY() * @generated */ void setBlurY(Double value); /** * Returns the value of the '<em><b>Quality</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Quality</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Quality</em>' attribute. * @see #setQuality(Double) * @see at.bestsolution.efxclipse.formats.fxg.fxg.FxgPackage#getBlurFilter_Quality() * @model * @generated */ Double getQuality(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.formats.fxg.fxg.BlurFilter#getQuality <em>Quality</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Quality</em>' attribute. * @see #getQuality() * @generated */ void setQuality(Double value); } // BlurFilter