blob: 15958cc54ab10af07a6c1f5a374af9bc4c300c6c [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.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Property</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.vorto.functionblock.Property#getPresence <em>Presence</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.Property#getMultiplicity <em>Multiplicity</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.Property#getPropName <em>Prop Name</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.Property#getDescription <em>Description</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getProperty()
* @model
* @generated
*/
public interface Property extends EObject {
/**
* Returns the value of the '<em><b>Presence</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Presence</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>Presence</em>' containment reference.
* @see #setPresence(Presence)
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getProperty_Presence()
* @model containment="true"
* @generated
*/
Presence getPresence();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.Property#getPresence <em>Presence</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Presence</em>' containment reference.
* @see #getPresence()
* @generated
*/
void setPresence(Presence value);
/**
* Returns the value of the '<em><b>Multiplicity</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Multiplicity</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Multiplicity</em>' attribute.
* @see #setMultiplicity(String)
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getProperty_Multiplicity()
* @model
* @generated
*/
String getMultiplicity();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.Property#getMultiplicity <em>Multiplicity</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Multiplicity</em>' attribute.
* @see #getMultiplicity()
* @generated
*/
void setMultiplicity(String value);
/**
* Returns the value of the '<em><b>Prop Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Prop 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>Prop Name</em>' attribute.
* @see #setPropName(String)
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getProperty_PropName()
* @model
* @generated
*/
String getPropName();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.Property#getPropName <em>Prop Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Prop Name</em>' attribute.
* @see #getPropName()
* @generated
*/
void setPropName(String value);
/**
* Returns the value of the '<em><b>Description</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Description</em>' attribute.
* @see #setDescription(String)
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getProperty_Description()
* @model
* @generated
*/
String getDescription();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.Property#getDescription <em>Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' attribute.
* @see #getDescription()
* @generated
*/
void setDescription(String value);
} // Property