/** * <copyright> * </copyright> * * $Id$ */ package at.bestsolution.efxclipse.formats.fxg.fxg; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Transform</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link at.bestsolution.efxclipse.formats.fxg.fxg.Transform#getMatrix <em>Matrix</em>}</li> * <li>{@link at.bestsolution.efxclipse.formats.fxg.fxg.Transform#getColorTransform <em>Color Transform</em>}</li> * </ul> * </p> * * @see at.bestsolution.efxclipse.formats.fxg.fxg.FxgPackage#getTransform() * @model * @generated */ public interface Transform extends FXGElement { /** * Returns the value of the '<em><b>Matrix</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Matrix</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>Matrix</em>' containment reference. * @see #setMatrix(Matrix) * @see at.bestsolution.efxclipse.formats.fxg.fxg.FxgPackage#getTransform_Matrix() * @model containment="true" * @generated */ Matrix getMatrix(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.formats.fxg.fxg.Transform#getMatrix <em>Matrix</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Matrix</em>' containment reference. * @see #getMatrix() * @generated */ void setMatrix(Matrix value); /** * Returns the value of the '<em><b>Color Transform</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Color Transform</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Color Transform</em>' reference. * @see #setColorTransform(ColorTransform) * @see at.bestsolution.efxclipse.formats.fxg.fxg.FxgPackage#getTransform_ColorTransform() * @model * @generated */ ColorTransform getColorTransform(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.formats.fxg.fxg.Transform#getColorTransform <em>Color Transform</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Color Transform</em>' reference. * @see #getColorTransform() * @generated */ void setColorTransform(ColorTransform value); } // Transform