blob: 6285618bdbac61277abae7141e743a3817e165e3 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Entity</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.vorto.functionblock.Entity#getSuperType <em>Super Type</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.Entity#getProperties <em>Properties</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getEntity()
* @model
* @generated
*/
public interface Entity extends ObjectType {
/**
* Returns the value of the '<em><b>Super Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Super Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Super Type</em>' reference.
* @see #setSuperType(Entity)
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getEntity_SuperType()
* @model
* @generated
*/
Entity getSuperType();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.Entity#getSuperType <em>Super Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Super Type</em>' reference.
* @see #getSuperType()
* @generated
*/
void setSuperType(Entity value);
/**
* Returns the value of the '<em><b>Properties</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Properties</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>Properties</em>' containment reference.
* @see #setProperties(FBFeature)
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getEntity_Properties()
* @model containment="true"
* @generated
*/
FBFeature getProperties();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.Entity#getProperties <em>Properties</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Properties</em>' containment reference.
* @see #getProperties()
* @generated
*/
void setProperties(FBFeature value);
} // Entity