/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.gmfgraph; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Color Pin</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.gmfgraph.ColorPin#isBackgroundNotForeground <em>Background Not Foreground</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getColorPin() * @model * @generated */ public interface ColorPin extends Pin { /** * Returns the value of the '<em><b>Background Not Foreground</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Background Not Foreground</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 Not Foreground</em>' attribute. * @see #setBackgroundNotForeground(boolean) * @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getColorPin_BackgroundNotForeground() * @model * @generated */ boolean isBackgroundNotForeground(); /** * Sets the value of the '{@link org.eclipse.gmf.gmfgraph.ColorPin#isBackgroundNotForeground <em>Background Not Foreground</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Background Not Foreground</em>' attribute. * @see #isBackgroundNotForeground() * @generated */ void setBackgroundNotForeground(boolean value); } // ColorPin