/** */ package 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>System</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link iot2.System#getName <em>Name</em>}</li> * <li>{@link iot2.System#getComponents <em>Components</em>}</li> * <li>{@link iot2.System#getBoards <em>Boards</em>}</li> * <li>{@link iot2.System#getSketch <em>Sketch</em>}</li> * </ul> * </p> * * @see iot2.Iot2Package#getSystem() * @model * @generated */ public interface System 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 iot2.Iot2Package#getSystem_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link iot2.System#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>Components</b></em>' containment reference list. * The list contents are of type {@link iot2.HWComponent}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Components</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>Components</em>' containment reference list. * @see iot2.Iot2Package#getSystem_Components() * @model containment="true" * @generated */ EList<HWComponent> getComponents(); /** * Returns the value of the '<em><b>Boards</b></em>' containment reference list. * The list contents are of type {@link iot2.Board}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Boards</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>Boards</em>' containment reference list. * @see iot2.Iot2Package#getSystem_Boards() * @model containment="true" * @generated */ EList<Board> getBoards(); /** * Returns the value of the '<em><b>Sketch</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Sketch</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Sketch</em>' containment reference. * @see #setSketch(Sketch) * @see iot2.Iot2Package#getSystem_Sketch() * @model containment="true" * @generated */ Sketch getSketch(); /** * Sets the value of the '{@link iot2.System#getSketch <em>Sketch</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Sketch</em>' containment reference. * @see #getSketch() * @generated */ void setSketch(Sketch value); } // System