blob: 05e7d115e6e7d5d91e261dfd81e541125d23025c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Bosch Software Innovations GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* The Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Bosch Software Innovations GmbH - Please refer to git log
*
*******************************************************************************/
/**
*/
package org.eclipse.vorto.functionblock;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Model</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.vorto.functionblock.FunctionblockModel#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.FunctionblockModel#getFunctionblock <em>Functionblock</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.FunctionblockModel#getElements <em>Elements</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.FunctionblockModel#getEnums <em>Enums</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getFunctionblockModel()
* @model
* @generated
*/
public interface FunctionblockModel 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.vorto.functionblock.FunctionblockPackage#getFunctionblockModel_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.FunctionblockModel#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>Functionblock</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Functionblock</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>Functionblock</em>' containment reference.
* @see #setFunctionblock(FunctionBlock)
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getFunctionblockModel_Functionblock()
* @model containment="true"
* @generated
*/
FunctionBlock getFunctionblock();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.FunctionblockModel#getFunctionblock <em>Functionblock</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Functionblock</em>' containment reference.
* @see #getFunctionblock()
* @generated
*/
void setFunctionblock(FunctionBlock value);
/**
* Returns the value of the '<em><b>Elements</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.vorto.functionblock.Entity}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Elements</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>Elements</em>' containment reference list.
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getFunctionblockModel_Elements()
* @model containment="true"
* @generated
*/
EList<Entity> getElements();
/**
* Returns the value of the '<em><b>Enums</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.vorto.functionblock.Enum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Enums</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>Enums</em>' containment reference list.
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getFunctionblockModel_Enums()
* @model containment="true"
* @generated
*/
EList<org.eclipse.vorto.functionblock.Enum> getEnums();
} // FunctionblockModel