Class AbstractPort
- java.lang.Object
-
- fr.ens.biologie.genomique.eoulsan.core.AbstractPort
-
- All Implemented Interfaces:
Port
,Serializable
- Direct Known Subclasses:
SimpleInputPort
,SimpleOutputPort
public abstract class AbstractPort extends Object implements Port, Serializable
Abstract class that define a port.- Since:
- 2.0
- Author:
- Laurent Jourdren
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataFormat
getFormat()
Get the data format of the port.Set<Step>
getLinkedSteps()
Get the steps linked to this port.String
getName()
Get the name of the port.boolean
isList()
Test if the port requires a list as value.
-
-
-
Method Detail
-
isList
public boolean isList()
Description copied from interface:Port
Test if the port requires a list as value.
-
getFormat
public DataFormat getFormat()
Description copied from interface:Port
Get the data format of the port.
-
getLinkedSteps
public Set<Step> getLinkedSteps()
Description copied from interface:Port
Get the steps linked to this port.- Specified by:
getLinkedSteps
in interfacePort
- Returns:
- a step with the list of linked steps
-
-