blob: 75428c9b2d32e255586ddb4e8c2c1577f6fc59f0 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.gmf.gmfgraph;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>RGB Color</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmf.gmfgraph.RGBColor#getRed <em>Red</em>}</li>
* <li>{@link org.eclipse.gmf.gmfgraph.RGBColor#getGreen <em>Green</em>}</li>
* <li>{@link org.eclipse.gmf.gmfgraph.RGBColor#getBlue <em>Blue</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getRGBColor()
* @model
* @generated
*/
public interface RGBColor extends Color {
/**
* 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.gmfgraph.GMFGraphPackage#getRGBColor_Red()
* @model required="true"
* @generated
*/
int getRed();
/**
* Sets the value of the '{@link org.eclipse.gmf.gmfgraph.RGBColor#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.gmfgraph.GMFGraphPackage#getRGBColor_Green()
* @model required="true"
* @generated
*/
int getGreen();
/**
* Sets the value of the '{@link org.eclipse.gmf.gmfgraph.RGBColor#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.gmfgraph.GMFGraphPackage#getRGBColor_Blue()
* @model required="true"
* @generated
*/
int getBlue();
/**
* Sets the value of the '{@link org.eclipse.gmf.gmfgraph.RGBColor#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);
} // RGBColor