blob: e5623e112f104a9bf2ea1d425d0cf38d632cf6bd [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
* generated from ActionDSL.xcore
*
*
*/
package org.eclipse.osbp.xtext.action;
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>Action Package</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.action.ActionPackage#isWithouCommandProvider <em>Withou Command Provider</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.action.ActionPackage#getCommands <em>Commands</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.action.ActionPackage#getToolbars <em>Toolbars</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionPackage()
* @model
* @generated
*/
public interface ActionPackage extends LPackage {
/**
* Returns the value of the '<em><b>Withou Command Provider</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Withou Command Provider</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Withou Command Provider</em>' attribute.
* @see #setWithouCommandProvider(boolean)
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionPackage_WithouCommandProvider()
* @model unique="false"
* @generated
*/
boolean isWithouCommandProvider();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.action.ActionPackage#isWithouCommandProvider <em>Withou Command Provider</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Withou Command Provider</em>' attribute.
* @see #isWithouCommandProvider()
* @generated
*/
void setWithouCommandProvider(boolean value);
/**
* Returns the value of the '<em><b>Commands</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.action.ActionCommand}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Commands</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>Commands</em>' containment reference list.
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionPackage_Commands()
* @model containment="true"
* @generated
*/
EList<ActionCommand> getCommands();
/**
* Returns the value of the '<em><b>Toolbars</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.action.ActionToolbar}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Toolbars</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>Toolbars</em>' containment reference list.
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionPackage_Toolbars()
* @model containment="true"
* @generated
*/
EList<ActionToolbar> getToolbars();
} // ActionPackage