Interface ToolElement
-
- All Known Implementing Classes:
AbstractParameterToolElement,AbstractToolElement,BooleanParameterToolElement,ConditionalToolElement,DataToolElement,EmptyToolElement,FloatParameterToolElement,IntegerParameterToolElement,SelectParameterToolElement,TextParameterToolElement
public interface ToolElementThe ToolElement interface.- Since:
- 2.0
- Author:
- Sandrine Perrin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Gets the name.StringgetShortName()Gets the short name.StringgetValidatedName()Gets the name which respect Eoulsan's syntax.StringgetValue()Gets the value.voidsetValue(String value)Sets the value.
-
-
-
Field Detail
-
SEP
static final String SEP
The Constant SEP.- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
String getName()
Gets the name.- Returns:
- the name
-
getShortName
String getShortName()
Gets the short name.- Returns:
- the short name
-
getValidatedName
String getValidatedName()
Gets the name which respect Eoulsan's syntax.- Returns:
- the name
-
getValue
String getValue()
Gets the value.- Returns:
- the value
-
setValue
void setValue(String value) throws EoulsanException
Sets the value.- Parameters:
value- the value- Throws:
EoulsanException- the eoulsan exception
-
-