/** * Copyright (c) 2012-2016 Marsha Chechik, Alessio Di Sandro, Michalis Famelis, * Rick Salay. * 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: * Alessio Di Sandro - Implementation. */ package edu.toronto.cs.se.modelepedia.powerwindow; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Window</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link edu.toronto.cs.se.modelepedia.powerwindow.Window#getSensor <em>Sensor</em>}</li> * <li>{@link edu.toronto.cs.se.modelepedia.powerwindow.Window#getSwitches <em>Switches</em>}</li> * </ul> * </p> * * @see edu.toronto.cs.se.modelepedia.powerwindow.PowerWindowPackage#getWindow() * @model * @generated */ public interface Window extends NamedElement { /** * Returns the value of the '<em><b>Sensor</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Sensor</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>Sensor</em>' containment reference. * @see #setSensor(Sensor) * @see edu.toronto.cs.se.modelepedia.powerwindow.PowerWindowPackage#getWindow_Sensor() * @model containment="true" * @generated */ Sensor getSensor(); /** * Sets the value of the '{@link edu.toronto.cs.se.modelepedia.powerwindow.Window#getSensor <em>Sensor</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Sensor</em>' containment reference. * @see #getSensor() * @generated */ void setSensor(Sensor value); /** * Returns the value of the '<em><b>Switches</b></em>' containment reference list. * The list contents are of type {@link edu.toronto.cs.se.modelepedia.powerwindow.Switch}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Switches</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>Switches</em>' containment reference list. * @see edu.toronto.cs.se.modelepedia.powerwindow.PowerWindowPackage#getWindow_Switches() * @model containment="true" required="true" * @generated */ EList<Switch> getSwitches(); } // Window