org.openxma.dsl.dom.model.Service Maven / Gradle / Ivy
/**
*
*
*
* $Id: Service.java 9011 2012-01-13 14:48:10Z mjohannes $
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.common.util.EList;
import org.openxma.dsl.core.model.ModelElement;
/**
*
* A representation of the model object 'Service'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.Service#getDependencies Dependencies}
* - {@link org.openxma.dsl.dom.model.Service#getOperations Operations}
* - {@link org.openxma.dsl.dom.model.Service#getDelegateOperations Delegate Operations}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getService()
* @model
* @generated
*/
public interface Service extends ModelElement, Dependant {
/**
* Returns the value of the 'Dependencies' reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.Dependant}.
*
*
* If the meaning of the 'Dependencies' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Dependencies' reference list.
* @see org.openxma.dsl.dom.DomPackage#getService_Dependencies()
* @model
* @generated
*/
EList getDependencies();
/**
* Returns the value of the 'Delegate Operations' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.DelegateOperation}.
*
*
* If the meaning of the 'Delegate Operations' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Delegate Operations' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getService_DelegateOperations()
* @model containment="true"
* @generated
*/
EList getDelegateOperations();
/**
* Returns the value of the 'Operations' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.Operation}.
*
*
* If the meaning of the 'Operations' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Operations' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getService_Operations()
* @model containment="true"
* @generated
*/
EList getOperations();
} // Service