blob: 1aee9cdd8519c49007d7b0ab5ca9bf450611ec0d [file] [log] [blame]
/***********************************************************************************************************************
* Copyright (c) 2010 Attensity Europe GmbH.
* 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
**********************************************************************************************************************/
package org.eclipse.smila.processing.designer.model.processor;
import org.eclipse.bpel.model.ExtensibleElement;
/**
* <!-- 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.smila.processing.designer.model.processor.Service#getName <em>Name</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.smila.processing.designer.model.processor.ProcessorPackage#getService()
* @model
* @generated
*/
public interface Service extends ExtensibleElement
{
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.smila.processing.designer.model.processor.ProcessorPackage#getService_Name()
* @model required="true"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.smila.processing.designer.model.processor.Service#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // Service