blob: b8ce40e495b7031af0297874ebb49e38847a148b [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
* Shuai Li (CEA) shuai.li@cea.fr - Integration of sensiNact and Web of Things Thing Description
*
*/
package org.eclipse.papyrus.iotml.sensinact;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.papyrus.iotml.software.core.structure.DetailedValueSpecification;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Typed Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.iotml.sensinact.TypedElement#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.iotml.sensinact.SensinactPackage#getTypedElement()
* @model abstract="true"
* @generated
*/
public interface TypedElement extends EObject {
/**
* Returns the value of the '<em><b>Value</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' reference.
* @see #setValue(DetailedValueSpecification)
* @see org.eclipse.papyrus.iotml.sensinact.SensinactPackage#getTypedElement_Value()
* @model ordered="false"
* @generated
*/
DetailedValueSpecification getValue();
/**
* Sets the value of the '{@link org.eclipse.papyrus.iotml.sensinact.TypedElement#getValue <em>Value</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' reference.
* @see #getValue()
* @generated
*/
void setValue(DetailedValueSpecification value);
} // TypedElement