blob: d7136299d8e01b5d792f459f65cbedc7092f10c0 [file] [log] [blame]
/**
* Copyright (c) 2017 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:
* CEA - initial API and implementation and/or initial documentation
*/
/**
*/
package org.eclipse.sensinact.studio.resource;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Service</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.sensinact.studio.resource.Service#getFriendlyName <em>Friendly Name</em>}</li>
* <li>{@link org.eclipse.sensinact.studio.resource.Service#getResource <em>Resource</em>}</li>
* </ul>
*
* @see org.eclipse.sensinact.studio.resource.ResourcePackage#getService()
* @model
* @generated
*/
public interface Service extends NamedElement {
/**
* Returns the value of the '<em><b>Friendly Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Friendly 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>Friendly Name</em>' attribute.
* @see #setFriendlyName(String)
* @see org.eclipse.sensinact.studio.resource.ResourcePackage#getService_FriendlyName()
* @model
* @generated
*/
String getFriendlyName();
/**
* Sets the value of the '{@link org.eclipse.sensinact.studio.resource.Service#getFriendlyName <em>Friendly Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Friendly Name</em>' attribute.
* @see #getFriendlyName()
* @generated
*/
void setFriendlyName(String value);
/**
* Returns the value of the '<em><b>Resource</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.sensinact.studio.resource.Resource}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Resource</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>Resource</em>' containment reference list.
* @see org.eclipse.sensinact.studio.resource.ResourcePackage#getService_Resource()
* @model containment="true"
* @generated
*/
EList<Resource> getResource();
} // Service