blob: 547c5ff4d065924966d56c78bb57616b2bb67b3c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.tesla.core.ui;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Color</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Color#getRed <em>Red</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Color#getGreen <em>Green</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Color#getBlue <em>Blue</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Color#getAlfa <em>Alfa</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getColor()
* @model
* @generated
*/
public interface Color extends EObject {
/**
* 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.rcptt.tesla.core.ui.UiPackage#getColor_Red()
* @model
* @generated
*/
int getRed();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Color#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.rcptt.tesla.core.ui.UiPackage#getColor_Green()
* @model
* @generated
*/
int getGreen();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Color#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.rcptt.tesla.core.ui.UiPackage#getColor_Blue()
* @model
* @generated
*/
int getBlue();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Color#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);
/**
* Returns the value of the '<em><b>Alfa</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Alfa</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Alfa</em>' attribute.
* @see #setAlfa(int)
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getColor_Alfa()
* @model
* @generated
*/
int getAlfa();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Color#getAlfa <em>Alfa</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Alfa</em>' attribute.
* @see #getAlfa()
* @generated
*/
void setAlfa(int value);
} // Color