Class EmptyToolElement
- java.lang.Object
-
- fr.ens.biologie.genomique.eoulsan.galaxytools.elements.EmptyToolElement
-
- All Implemented Interfaces:
ToolElement
public class EmptyToolElement extends Object implements ToolElement
This class define an empty tool element.- Since:
- 2.0
- Author:
- Sandrine Perrin
-
-
Field Summary
-
Fields inherited from interface fr.ens.biologie.genomique.eoulsan.galaxytools.elements.ToolElement
SEP
-
-
Constructor Summary
Constructors Constructor Description EmptyToolElement()Public constructor.EmptyToolElement(String toolElementName)Public constructor.EmptyToolElement(String toolElementName, String nameSpace)Public constructor.
-
Method Summary
All Methods Instance Methods Concrete 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.
-
-
-
Constructor Detail
-
EmptyToolElement
public EmptyToolElement()
Public constructor.
-
EmptyToolElement
public EmptyToolElement(String toolElementName)
Public constructor.- Parameters:
toolElementName- name of the tool element
-
-
Method Detail
-
getShortName
public String getShortName()
Description copied from interface:ToolElementGets the short name.- Specified by:
getShortNamein interfaceToolElement- Returns:
- the short name
-
getName
public String getName()
Description copied from interface:ToolElementGets the name.- Specified by:
getNamein interfaceToolElement- Returns:
- the name
-
getValidatedName
public String getValidatedName()
Description copied from interface:ToolElementGets the name which respect Eoulsan's syntax.- Specified by:
getValidatedNamein interfaceToolElement- Returns:
- the name
-
getValue
public String getValue()
Description copied from interface:ToolElementGets the value.- Specified by:
getValuein interfaceToolElement- Returns:
- the value
-
setValue
public void setValue(String value)
Description copied from interface:ToolElementSets the value.- Specified by:
setValuein interfaceToolElement- Parameters:
value- the value
-
-