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 String
getName()
Gets the name.String
getShortName()
Gets the short name.String
getValidatedName()
Gets the name which respect Eoulsan's syntax.String
getValue()
Gets the value.void
setValue(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:ToolElement
Gets the short name.- Specified by:
getShortName
in interfaceToolElement
- Returns:
- the short name
-
getName
public String getName()
Description copied from interface:ToolElement
Gets the name.- Specified by:
getName
in interfaceToolElement
- Returns:
- the name
-
getValidatedName
public String getValidatedName()
Description copied from interface:ToolElement
Gets the name which respect Eoulsan's syntax.- Specified by:
getValidatedName
in interfaceToolElement
- Returns:
- the name
-
getValue
public String getValue()
Description copied from interface:ToolElement
Gets the value.- Specified by:
getValue
in interfaceToolElement
- Returns:
- the value
-
setValue
public void setValue(String value)
Description copied from interface:ToolElement
Sets the value.- Specified by:
setValue
in interfaceToolElement
- Parameters:
value
- the value
-
-