org.nasdanika.models.functionflow.Consumer Maven / Gradle / Ivy
The newest version!
/**
*/
package org.nasdanika.models.functionflow;
import org.nasdanika.models.architecture.RelationshipTarget;
/**
*
* A representation of the model object 'Consumer'.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.models.functionflow.Consumer#getInput Input}
*
*
* @see org.nasdanika.models.functionflow.FunctionFlowPackage#getConsumer()
* @model
* @generated
*/
public interface Consumer extends FlowElement, RelationshipTarget {
/**
* Returns the value of the 'Input' attribute.
*
*
*
* Output type
*
* @return the value of the 'Input' attribute.
* @see #setInput(String)
* @see org.nasdanika.models.functionflow.FunctionFlowPackage#getConsumer_Input()
* @model
* @generated
*/
String getInput();
/**
* Sets the value of the '{@link org.nasdanika.models.functionflow.Consumer#getInput Input}' attribute.
*
*
* @param value the new value of the 'Input' attribute.
* @see #getInput()
* @generated
*/
void setInput(String value);
} // Consumer