blob: 99230794de5801bdc6a583e50e720470bee771a9 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.bpel.wsil.model.inspection;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.util.FeatureMap;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Inspection</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.bpel.wsil.model.inspection.Inspection#getGroups <em>Groups</em>}</li>
* <li>{@link org.eclipse.bpel.wsil.model.inspection.Inspection#getServices <em>Services</em>}</li>
* <li>{@link org.eclipse.bpel.wsil.model.inspection.Inspection#getLinks <em>Links</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.bpel.wsil.model.inspection.InspectionPackage#getInspection()
* @model extendedMetaData="name='inspection_._type' kind='elementOnly'"
* @generated
*/
public interface Inspection extends ItemWithAbstracts {
/**
* Returns the value of the '<em><b>Groups</b></em>' attribute list.
* The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Groups</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Groups</em>' attribute list.
* @see org.eclipse.bpel.wsil.model.inspection.InspectionPackage#getInspection_Groups()
* @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
* extendedMetaData="kind='group' name='group:1'"
* @generated
*/
FeatureMap getGroups();
/**
* Returns the value of the '<em><b>Services</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.bpel.wsil.model.inspection.Service}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Services</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>Services</em>' containment reference list.
* @see org.eclipse.bpel.wsil.model.inspection.InspectionPackage#getInspection_Services()
* @model containment="true" transient="true" volatile="true" derived="true"
* extendedMetaData="kind='element' name='service' namespace='##targetNamespace' group='#group:1'"
* @generated
*/
EList<Service> getServices();
/**
* Returns the value of the '<em><b>Links</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.bpel.wsil.model.inspection.Link}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Links</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>Links</em>' containment reference list.
* @see org.eclipse.bpel.wsil.model.inspection.InspectionPackage#getInspection_Links()
* @model containment="true" transient="true" volatile="true" derived="true"
* extendedMetaData="kind='element' name='link' namespace='##targetNamespace' group='#group:1'"
* @generated
*/
EList<Link> getLinks();
} // Inspection