Interface SectionInput
-
- All Superinterfaces:
SectionFlowSourceNode
- All Known Subinterfaces:
SectionInputNode
- All Known Implementing Classes:
SectionInputNodeImpl
public interface SectionInput extends SectionFlowSourceNode
Input to anSectionNode
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addAnnotation(java.lang.Object annotation)
Adds the annotation for thisSectionInput
.java.lang.String
getSectionInputName()
Obtains the name of thisSectionInput
.
-
-
-
Method Detail
-
getSectionInputName
java.lang.String getSectionInputName()
Obtains the name of thisSectionInput
.- Returns:
- Name of this
SectionInput
.
-
addAnnotation
void addAnnotation(java.lang.Object annotation)
Adds the annotation for this
SectionInput
.This is exposed as is on the
SectionInputType
interface for thisSectionInput
.- Parameters:
annotation
- Annotation.
-
-