blob: 801e97f54e7c6cca5dd5b8c6e2c0b3bf651690bf [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.gmf.tooldef;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Contribution Item</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmf.tooldef.ContributionItem#getIcon <em>Icon</em>}</li>
* <li>{@link org.eclipse.gmf.tooldef.ContributionItem#getTitle <em>Title</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmf.tooldef.GMFToolPackage#getContributionItem()
* @model interface="true" abstract="true"
* @generated
*/
public interface ContributionItem extends ItemBase {
/**
* Returns the value of the '<em><b>Icon</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Icon</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>Icon</em>' containment reference.
* @see #setIcon(Image)
* @see org.eclipse.gmf.tooldef.GMFToolPackage#getContributionItem_Icon()
* @model containment="true"
* @generated
*/
Image getIcon();
/**
* Sets the value of the '{@link org.eclipse.gmf.tooldef.ContributionItem#getIcon <em>Icon</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Icon</em>' containment reference.
* @see #getIcon()
* @generated
*/
void setIcon(Image value);
/**
* Returns the value of the '<em><b>Title</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Title</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Title</em>' attribute.
* @see #setTitle(String)
* @see org.eclipse.gmf.tooldef.GMFToolPackage#getContributionItem_Title()
* @model
* @generated
*/
String getTitle();
/**
* Sets the value of the '{@link org.eclipse.gmf.tooldef.ContributionItem#getTitle <em>Title</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Title</em>' attribute.
* @see #getTitle()
* @generated
*/
void setTitle(String value);
} // ContributionItem