blob: 716764ced5db6711f6157e26a02da725cfbb3f58 [file] [log] [blame]
/**
* Copyright (c) 2014,2016 Loetz GmbH&Co.KG (Heidelberg)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Loetz GmbH&Co.KG - Initial implementation
*
*/
package org.eclipse.osbp.xtext.menu;
import org.eclipse.emf.common.util.EList;
import org.eclipse.osbp.dsl.semantic.common.types.LPackage;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Menu Tree</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.menu.MenuTree#isHasTooltip <em>Has Tooltip</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.menu.MenuTree#getTooltip <em>Tooltip</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.menu.MenuTree#getEntries <em>Entries</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.menu.MenuDslPackage#getMenuTree()
* @model
* @generated
*/
public interface MenuTree extends LPackage {
/**
* Returns the value of the '<em><b>Has Tooltip</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Has Tooltip</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Has Tooltip</em>' attribute.
* @see #setHasTooltip(boolean)
* @see org.eclipse.osbp.xtext.menu.MenuDslPackage#getMenuTree_HasTooltip()
* @model unique="false"
* @generated
*/
boolean isHasTooltip();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.menu.MenuTree#isHasTooltip <em>Has Tooltip</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Has Tooltip</em>' attribute.
* @see #isHasTooltip()
* @generated
*/
void setHasTooltip(boolean value);
/**
* Returns the value of the '<em><b>Tooltip</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tooltip</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Tooltip</em>' attribute.
* @see #setTooltip(String)
* @see org.eclipse.osbp.xtext.menu.MenuDslPackage#getMenuTree_Tooltip()
* @model unique="false"
* @generated
*/
String getTooltip();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.menu.MenuTree#getTooltip <em>Tooltip</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Tooltip</em>' attribute.
* @see #getTooltip()
* @generated
*/
void setTooltip(String value);
/**
* Returns the value of the '<em><b>Entries</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.menu.MenuEntry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Entries</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Entries</em>' containment reference list.
* @see org.eclipse.osbp.xtext.menu.MenuDslPackage#getMenuTree_Entries()
* @model containment="true"
* @generated
*/
EList<MenuEntry> getEntries();
} // MenuTree