/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.tooldef; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Main Menu</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * no default action and no id, just a collection of items * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.tooldef.MainMenu#getTitle <em>Title</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.tooldef.GMFToolPackage#getMainMenu() * @model * @generated */ public interface MainMenu extends Menu { /** * 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#getMainMenu_Title() * @model * @generated */ String getTitle(); /** * Sets the value of the '{@link org.eclipse.gmf.tooldef.MainMenu#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); } // MainMenu