blob: 4536c8f01d2236a17c5d36dbad59efb0001f359f [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
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Christophe Loetz - Initial implementation
*
*/
package org.eclipse.osbp.xtext.functionlibrarydsl;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Function Library Group</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getFunctions <em>Functions</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getRates <em>Rates</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getTests <em>Tests</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getGuards <em>Guards</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getOperations <em>Operations</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getExecutes <em>Executes</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getCanExecutes <em>Can Executes</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getValidators <em>Validators</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getInitializators <em>Initializators</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getConvertToModel <em>Convert To Model</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getConvertToPresentation <em>Convert To Presentation</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup()
* @model
* @generated
*/
public interface FunctionLibraryGroup extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_Name()
* @model unique="false"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Functions</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryFunction}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Functions</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>Functions</em>' containment reference list.
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_Functions()
* @model containment="true"
* @generated
*/
EList<FunctionLibraryFunction> getFunctions();
/**
* Returns the value of the '<em><b>Rates</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryRate}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Rates</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>Rates</em>' containment reference list.
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_Rates()
* @model containment="true"
* @generated
*/
EList<FunctionLibraryRate> getRates();
/**
* Returns the value of the '<em><b>Tests</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryTest}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tests</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>Tests</em>' containment reference list.
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_Tests()
* @model containment="true"
* @generated
*/
EList<FunctionLibraryTest> getTests();
/**
* Returns the value of the '<em><b>Guards</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGuard}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Guards</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>Guards</em>' containment reference list.
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_Guards()
* @model containment="true"
* @generated
*/
EList<FunctionLibraryGuard> getGuards();
/**
* Returns the value of the '<em><b>Operations</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryOperation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Operations</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>Operations</em>' containment reference list.
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_Operations()
* @model containment="true"
* @generated
*/
EList<FunctionLibraryOperation> getOperations();
/**
* Returns the value of the '<em><b>Executes</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryExecute}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Executes</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>Executes</em>' containment reference list.
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_Executes()
* @model containment="true"
* @generated
*/
EList<FunctionLibraryExecute> getExecutes();
/**
* Returns the value of the '<em><b>Can Executes</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryCanExecute}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Can Executes</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>Can Executes</em>' containment reference list.
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_CanExecutes()
* @model containment="true"
* @generated
*/
EList<FunctionLibraryCanExecute> getCanExecutes();
/**
* Returns the value of the '<em><b>Validators</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryValidation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Validators</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>Validators</em>' containment reference list.
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_Validators()
* @model containment="true"
* @generated
*/
EList<FunctionLibraryValidation> getValidators();
/**
* Returns the value of the '<em><b>Initializators</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryInitialization}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Initializators</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>Initializators</em>' containment reference list.
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_Initializators()
* @model containment="true"
* @generated
*/
EList<FunctionLibraryInitialization> getInitializators();
/**
* Returns the value of the '<em><b>Convert To Model</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Convert To Model</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>Convert To Model</em>' containment reference.
* @see #setConvertToModel(FunctionConvertToModel)
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_ConvertToModel()
* @model containment="true"
* @generated
*/
FunctionConvertToModel getConvertToModel();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getConvertToModel <em>Convert To Model</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Convert To Model</em>' containment reference.
* @see #getConvertToModel()
* @generated
*/
void setConvertToModel(FunctionConvertToModel value);
/**
* Returns the value of the '<em><b>Convert To Presentation</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Convert To Presentation</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>Convert To Presentation</em>' containment reference.
* @see #setConvertToPresentation(FunctionConvertToPresentation)
* @see org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage#getFunctionLibraryGroup_ConvertToPresentation()
* @model containment="true"
* @generated
*/
FunctionConvertToPresentation getConvertToPresentation();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup#getConvertToPresentation <em>Convert To Presentation</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Convert To Presentation</em>' containment reference.
* @see #getConvertToPresentation()
* @generated
*/
void setConvertToPresentation(FunctionConvertToPresentation value);
} // FunctionLibraryGroup