blob: 89cb90a76690be60a8da48fc3303f8a7921d375f [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;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Pipelet Configuration</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.smila.processing.designer.model.processor.PipeletConfiguration#getProperties <em>Properties</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.smila.processing.designer.model.processor.ProcessorPackage#getPipeletConfiguration()
* @model
* @generated
*/
public interface PipeletConfiguration extends ExtensibleElement
{
/**
* Returns the value of the '<em><b>Properties</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.smila.processing.designer.model.processor.Property}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Properties</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Properties</em>' containment reference list.
* @see org.eclipse.smila.processing.designer.model.processor.ProcessorPackage#getPipeletConfiguration_Properties()
* @model containment="true"
* @generated
*/
EList<Property> getProperties();
} // PipeletConfiguration