/** */ package fr.inria.diverse.iot2.iot2.iot2; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>HW Component</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link fr.inria.diverse.iot2.iot2.iot2.HWComponent#getName <em>Name</em>}</li> * <li>{@link fr.inria.diverse.iot2.iot2.iot2.HWComponent#getServices <em>Services</em>}</li> * </ul> * * @see fr.inria.diverse.iot2.iot2.iot2.Iot2Package#getHWComponent() * @model abstract="true" * @generated */ public interface HWComponent extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>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>Name</em>' attribute. * @see #setName(String) * @see fr.inria.diverse.iot2.iot2.iot2.Iot2Package#getHWComponent_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link fr.inria.diverse.iot2.iot2.iot2.HWComponent#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Services</b></em>' containment reference list. * The list contents are of type {@link fr.inria.diverse.iot2.iot2.iot2.OperationDef}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Services</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Services</em>' containment reference list. * @see fr.inria.diverse.iot2.iot2.iot2.Iot2Package#getHWComponent_Services() * @model containment="true" * @generated */ EList<OperationDef> getServices(); } // HWComponent