/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.bpel.wsil.model.inspection; 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: * <ul> * <li>{@link org.eclipse.bpel.wsil.model.inspection.Service#getName <em>Name</em>}</li> * <li>{@link org.eclipse.bpel.wsil.model.inspection.Service#getDescription <em>Description</em>}</li> * </ul> * </p> * * @see org.eclipse.bpel.wsil.model.inspection.InspectionPackage#getService() * @model extendedMetaData="name='serviceType' kind='elementOnly'" * @generated */ public interface Service extends ItemWithAbstracts { /** * Returns the value of the '<em><b>Name</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.bpel.wsil.model.inspection.Name}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</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>Name</em>' containment reference list. * @see org.eclipse.bpel.wsil.model.inspection.InspectionPackage#getService_Name() * @model containment="true" * extendedMetaData="kind='element' name='name' namespace='##targetNamespace'" * @generated */ EList<Name> getName(); /** * Returns the value of the '<em><b>Description</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.bpel.wsil.model.inspection.Description}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Description</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>Description</em>' containment reference list. * @see org.eclipse.bpel.wsil.model.inspection.InspectionPackage#getService_Description() * @model containment="true" required="true" * extendedMetaData="kind='element' name='description' namespace='##targetNamespace'" * @generated */ EList<Description> getDescription(); } // Service