/** */ 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>Board</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link fr.inria.diverse.iot2.iot2.iot2.Board#getName <em>Name</em>}</li> * <li>{@link fr.inria.diverse.iot2.iot2.iot2.Board#getType <em>Type</em>}</li> * <li>{@link fr.inria.diverse.iot2.iot2.iot2.Board#getComponents <em>Components</em>}</li> * </ul> * * @see fr.inria.diverse.iot2.iot2.iot2.Iot2Package#getBoard() * @model * @generated */ public interface Board 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#getBoard_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link fr.inria.diverse.iot2.iot2.iot2.Board#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>Type</b></em>' attribute. * The literals are from the enumeration {@link fr.inria.diverse.iot2.iot2.iot2.BoardType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' attribute. * @see fr.inria.diverse.iot2.iot2.iot2.BoardType * @see #setType(BoardType) * @see fr.inria.diverse.iot2.iot2.iot2.Iot2Package#getBoard_Type() * @model * @generated */ BoardType getType(); /** * Sets the value of the '{@link fr.inria.diverse.iot2.iot2.iot2.Board#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' attribute. * @see fr.inria.diverse.iot2.iot2.iot2.BoardType * @see #getType() * @generated */ void setType(BoardType value); /** * Returns the value of the '<em><b>Components</b></em>' reference list. * The list contents are of type {@link fr.inria.diverse.iot2.iot2.iot2.HWComponent}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Components</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>Components</em>' reference list. * @see fr.inria.diverse.iot2.iot2.iot2.Iot2Package#getBoard_Components() * @model * @generated */ EList<HWComponent> getComponents(); } // Board