/** */ package org.eclipse.gmf.tooling.examples.pins; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Changeable Color Pin</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.tooling.examples.pins.ChangeableColorPin#getRed <em>Red</em>}</li> * <li>{@link org.eclipse.gmf.tooling.examples.pins.ChangeableColorPin#getGreen <em>Green</em>}</li> * <li>{@link org.eclipse.gmf.tooling.examples.pins.ChangeableColorPin#getBlue <em>Blue</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.tooling.examples.pins.PinsPackage#getChangeableColorPin() * @model * @generated */ public interface ChangeableColorPin extends Pin { /** * Returns the value of the '<em><b>Red</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Red</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Red</em>' attribute. * @see #setRed(int) * @see org.eclipse.gmf.tooling.examples.pins.PinsPackage#getChangeableColorPin_Red() * @model * @generated */ int getRed(); /** * Sets the value of the '{@link org.eclipse.gmf.tooling.examples.pins.ChangeableColorPin#getRed <em>Red</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Red</em>' attribute. * @see #getRed() * @generated */ void setRed(int value); /** * Returns the value of the '<em><b>Green</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Green</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Green</em>' attribute. * @see #setGreen(int) * @see org.eclipse.gmf.tooling.examples.pins.PinsPackage#getChangeableColorPin_Green() * @model * @generated */ int getGreen(); /** * Sets the value of the '{@link org.eclipse.gmf.tooling.examples.pins.ChangeableColorPin#getGreen <em>Green</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Green</em>' attribute. * @see #getGreen() * @generated */ void setGreen(int value); /** * Returns the value of the '<em><b>Blue</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Blue</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Blue</em>' attribute. * @see #setBlue(int) * @see org.eclipse.gmf.tooling.examples.pins.PinsPackage#getChangeableColorPin_Blue() * @model * @generated */ int getBlue(); /** * Sets the value of the '{@link org.eclipse.gmf.tooling.examples.pins.ChangeableColorPin#getBlue <em>Blue</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Blue</em>' attribute. * @see #getBlue() * @generated */ void setBlue(int value); } // ChangeableColorPin