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 DataFormatgetFormat()Get the data format of the port.Set<Step>getLinkedSteps()Get the steps linked to this port.StringgetName()Get the name of the port.booleanisList()Test if the port requires a list as value.
-
-
-
Method Detail
-
isList
public boolean isList()
Description copied from interface:PortTest if the port requires a list as value.
-
getFormat
public DataFormat getFormat()
Description copied from interface:PortGet the data format of the port.
-
getLinkedSteps
public Set<Step> getLinkedSteps()
Description copied from interface:PortGet the steps linked to this port.- Specified by:
getLinkedStepsin interfacePort- Returns:
- a step with the list of linked steps
-
-