blob: 00c172951ec99bc84f026560fd0025883a8487dc [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>Presence</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.vorto.functionblock.Presence#getMandatory <em>Mandatory</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.Presence#getOptional <em>Optional</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getPresence()
* @model
* @generated
*/
public interface Presence extends EObject {
/**
* Returns the value of the '<em><b>Mandatory</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Mandatory</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Mandatory</em>' attribute.
* @see #setMandatory(String)
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getPresence_Mandatory()
* @model
* @generated
*/
String getMandatory();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.Presence#getMandatory <em>Mandatory</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Mandatory</em>' attribute.
* @see #getMandatory()
* @generated
*/
void setMandatory(String value);
/**
* Returns the value of the '<em><b>Optional</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Optional</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Optional</em>' attribute.
* @see #setOptional(String)
* @see org.eclipse.vorto.functionblock.FunctionblockPackage#getPresence_Optional()
* @model
* @generated
*/
String getOptional();
/**
* Sets the value of the '{@link org.eclipse.vorto.functionblock.Presence#getOptional <em>Optional</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Optional</em>' attribute.
* @see #getOptional()
* @generated
*/
void setOptional(String value);
} // Presence