/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.codegen.gmfgen; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Color Attributes</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Deprecated, use StyleAttributes instead * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.ColorAttributes#getForegroundColor <em>Foreground Color</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.ColorAttributes#getBackgroundColor <em>Background Color</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getColorAttributes() * @model * @generated */ public interface ColorAttributes extends Attributes { /** * Returns the value of the '<em><b>Foreground Color</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Foreground 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>Foreground Color</em>' attribute. * @see #setForegroundColor(String) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getColorAttributes_ForegroundColor() * @model * @generated */ String getForegroundColor(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.ColorAttributes#getForegroundColor <em>Foreground Color</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Foreground Color</em>' attribute. * @see #getForegroundColor() * @generated */ void setForegroundColor(String value); /** * Returns the value of the '<em><b>Background Color</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Background 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>Background Color</em>' attribute. * @see #setBackgroundColor(String) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getColorAttributes_BackgroundColor() * @model * @generated */ String getBackgroundColor(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.ColorAttributes#getBackgroundColor <em>Background Color</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Background Color</em>' attribute. * @see #getBackgroundColor() * @generated */ void setBackgroundColor(String value); } // ColorAttributes