blob: 084ca710a550c1a5011074aa954f795391f1ed74 [file] [log] [blame]
/**
* Copyright (c) 2011, 2017 - 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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*
*/
package org.eclipse.osbp.xtext.statemachine;
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>Statemachine Package</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachinePackage#getStatemachines <em>Statemachines</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachinePackage()
* @model
* @generated
*/
public interface StatemachinePackage extends LPackage {
/**
* Returns the value of the '<em><b>Statemachines</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.statemachine.Statemachine}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Statemachines</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>Statemachines</em>' containment reference list.
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachinePackage_Statemachines()
* @model containment="true"
* @generated
*/
EList<Statemachine> getStatemachines();
} // StatemachinePackage