blob: 45f1ed7c80d049c640cbfbc5400f4bc510cd1b39 [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.verifications.tree;
import org.eclipse.rcptt.tesla.core.ui.Color;
import org.eclipse.rcptt.tesla.core.ui.Image;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Item Data</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.verifications.tree.ItemData#getText <em>Text</em>}</li>
* <li>{@link org.eclipse.rcptt.verifications.tree.ItemData#getImage <em>Image</em>}</li>
* <li>{@link org.eclipse.rcptt.verifications.tree.ItemData#getForegroundColor <em>Foreground Color</em>}</li>
* <li>{@link org.eclipse.rcptt.verifications.tree.ItemData#getBackgroundColor <em>Background Color</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.verifications.tree.TreePackage#getItemData()
* @model
* @generated
*/
public interface ItemData extends EObject {
/**
* Returns the value of the '<em><b>Text</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Text</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Text</em>' attribute.
* @see #setText(String)
* @see org.eclipse.rcptt.verifications.tree.TreePackage#getItemData_Text()
* @model
* @generated
*/
String getText();
/**
* Sets the value of the '{@link org.eclipse.rcptt.verifications.tree.ItemData#getText <em>Text</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Text</em>' attribute.
* @see #getText()
* @generated
*/
void setText(String value);
/**
* Returns the value of the '<em><b>Image</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Image</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Image</em>' containment reference.
* @see #setImage(Image)
* @see org.eclipse.rcptt.verifications.tree.TreePackage#getItemData_Image()
* @model containment="true"
* @generated
*/
Image getImage();
/**
* Sets the value of the '{@link org.eclipse.rcptt.verifications.tree.ItemData#getImage <em>Image</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Image</em>' containment reference.
* @see #getImage()
* @generated
*/
void setImage(Image value);
/**
* Returns the value of the '<em><b>Foreground Color</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Foreground Color</em>' containment reference 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>' containment reference.
* @see #setForegroundColor(Color)
* @see org.eclipse.rcptt.verifications.tree.TreePackage#getItemData_ForegroundColor()
* @model containment="true"
* @generated
*/
Color getForegroundColor();
/**
* Sets the value of the '{@link org.eclipse.rcptt.verifications.tree.ItemData#getForegroundColor <em>Foreground Color</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Foreground Color</em>' containment reference.
* @see #getForegroundColor()
* @generated
*/
void setForegroundColor(Color value);
/**
* Returns the value of the '<em><b>Background Color</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Background Color</em>' containment reference 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>' containment reference.
* @see #setBackgroundColor(Color)
* @see org.eclipse.rcptt.verifications.tree.TreePackage#getItemData_BackgroundColor()
* @model containment="true"
* @generated
*/
Color getBackgroundColor();
/**
* Sets the value of the '{@link org.eclipse.rcptt.verifications.tree.ItemData#getBackgroundColor <em>Background Color</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Background Color</em>' containment reference.
* @see #getBackgroundColor()
* @generated
*/
void setBackgroundColor(Color value);
} // ItemData