blob: 85aed2559d66107f7d6a689c2f712e331a43ef2e [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.papyrus.iotml.animate.HumanUser;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Studio</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.iotml.sensinact.Studio#getGateways <em>Gateways</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.iotml.sensinact.SensinactPackage#getStudio()
* @model
* @generated
*/
public interface Studio extends HumanUser {
/**
* Returns the value of the '<em><b>Gateways</b></em>' reference list.
* The list contents are of type {@link org.eclipse.papyrus.iotml.sensinact.Gateway}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Gateways</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>Gateways</em>' reference list.
* @see org.eclipse.papyrus.iotml.sensinact.SensinactPackage#getStudio_Gateways()
* @model required="true" ordered="false"
* @generated
*/
EList<Gateway> getGateways();
} // Studio