blob: f0fafe0c1283ab65ab14c4f27560ff8f0d339480 [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.smila.processing.designer.model.record.ExtensionElement;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Pipelet</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.smila.processing.designer.model.processor.Pipelet#getClass_ <em>Class</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.smila.processing.designer.model.processor.ProcessorPackage#getPipelet()
* @model
* @generated
*/
public interface Pipelet extends ExtensionElement {
/**
* Returns the value of the '<em><b>Class</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Class</em>' attribute isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Class</em>' attribute.
* @see #setClass(String)
* @see org.eclipse.smila.processing.designer.model.processor.ProcessorPackage#getPipelet_Class()
* @model required="true"
* @generated
*/
String getClass_();
/**
* Sets the value of the '{@link org.eclipse.smila.processing.designer.model.processor.Pipelet#getClass_
* <em>Class</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Class</em>' attribute.
* @see #getClass_()
* @generated
*/
void setClass(String value);
} // Pipelet