blob: 12799a2a7fbdf2d04fedc0cffcba534f87dbae4a [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.gmf.tooldef;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Abstract Tool</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmf.tooldef.AbstractTool#getSmallIcon <em>Small Icon</em>}</li>
* <li>{@link org.eclipse.gmf.tooldef.AbstractTool#getLargeIcon <em>Large Icon</em>}</li>
* <li>{@link org.eclipse.gmf.tooldef.AbstractTool#getTitle <em>Title</em>}</li>
* <li>{@link org.eclipse.gmf.tooldef.AbstractTool#getDescription <em>Description</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmf.tooldef.GMFToolPackage#getAbstractTool()
* @model abstract="true"
* @generated
*/
public interface AbstractTool extends EObject {
/**
* Returns the value of the '<em><b>Small Icon</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Small 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>Small Icon</em>' containment reference.
* @see #setSmallIcon(Image)
* @see org.eclipse.gmf.tooldef.GMFToolPackage#getAbstractTool_SmallIcon()
* @model containment="true"
* @generated
*/
Image getSmallIcon();
/**
* Sets the value of the '{@link org.eclipse.gmf.tooldef.AbstractTool#getSmallIcon <em>Small Icon</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Small Icon</em>' containment reference.
* @see #getSmallIcon()
* @generated
*/
void setSmallIcon(Image value);
/**
* Returns the value of the '<em><b>Large Icon</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Large 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>Large Icon</em>' containment reference.
* @see #setLargeIcon(Image)
* @see org.eclipse.gmf.tooldef.GMFToolPackage#getAbstractTool_LargeIcon()
* @model containment="true"
* @generated
*/
Image getLargeIcon();
/**
* Sets the value of the '{@link org.eclipse.gmf.tooldef.AbstractTool#getLargeIcon <em>Large Icon</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Large Icon</em>' containment reference.
* @see #getLargeIcon()
* @generated
*/
void setLargeIcon(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#getAbstractTool_Title()
* @model
* @generated
*/
String getTitle();
/**
* Sets the value of the '{@link org.eclipse.gmf.tooldef.AbstractTool#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);
/**
* Returns the value of the '<em><b>Description</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Description</em>' attribute.
* @see #setDescription(String)
* @see org.eclipse.gmf.tooldef.GMFToolPackage#getAbstractTool_Description()
* @model
* @generated
*/
String getDescription();
/**
* Sets the value of the '{@link org.eclipse.gmf.tooldef.AbstractTool#getDescription <em>Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' attribute.
* @see #getDescription()
* @generated
*/
void setDescription(String value);
} // AbstractTool