blob: a85939657e773208e6030c1d004198494a9c6ed0 [file] [log] [blame]
/**
* Copyright (c) 2018 CEA
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Jérémie Tatibouet (CEA) jeremie.tatibouet@cea.fr - Initial API and implementation
* Benoit Maggi (CEA) benoit.maggi@cea.fr - Initial API and implementation
*
*/
package org.eclipse.papyrus.iotml.sensinact;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>State Variable</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.iotml.sensinact.StateVariable#getModifier <em>Modifier</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.iotml.sensinact.SensinactPackage#getStateVariable()
* @model
* @generated
*/
public interface StateVariable extends Resource {
/**
* Returns the value of the '<em><b>Modifier</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Modifier</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Modifier</em>' reference.
* @see #setModifier(Action)
* @see org.eclipse.papyrus.iotml.sensinact.SensinactPackage#getStateVariable_Modifier()
* @model required="true" ordered="false"
* @generated
*/
Action getModifier();
/**
* Sets the value of the '{@link org.eclipse.papyrus.iotml.sensinact.StateVariable#getModifier <em>Modifier</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Modifier</em>' reference.
* @see #getModifier()
* @generated
*/
void setModifier(Action value);
} // StateVariable