blob: 352431262b0f14f3a9f34c40471f14bd5e9c2907 [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.common.util.EList;
import org.eclipse.uml2.uml.Property;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Attribute</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.iotml.sensinact.Attribute#getMetadata <em>Metadata</em>}</li>
* <li>{@link org.eclipse.papyrus.iotml.sensinact.Attribute#getBase_Property <em>Base Property</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.iotml.sensinact.SensinactPackage#getAttribute()
* @model
* @generated
*/
public interface Attribute extends TypedElement {
/**
* Returns the value of the '<em><b>Metadata</b></em>' reference list.
* The list contents are of type {@link org.eclipse.papyrus.iotml.sensinact.Metadata}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Metadata</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Metadata</em>' reference list.
* @see org.eclipse.papyrus.iotml.sensinact.SensinactPackage#getAttribute_Metadata()
* @model ordered="false"
* @generated
*/
EList<Metadata> getMetadata();
/**
* Returns the value of the '<em><b>Base Property</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Property</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Base Property</em>' reference.
* @see #setBase_Property(Property)
* @see org.eclipse.papyrus.iotml.sensinact.SensinactPackage#getAttribute_Base_Property()
* @model ordered="false"
* @generated
*/
Property getBase_Property();
/**
* Sets the value of the '{@link org.eclipse.papyrus.iotml.sensinact.Attribute#getBase_Property <em>Base Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Property</em>' reference.
* @see #getBase_Property()
* @generated
*/
void setBase_Property(Property value);
} // Attribute