Interface NamedContainer
-
- All Superinterfaces:
IDHandler,MutableIDHandler
- All Known Implementing Classes:
InstanceContainer,ReportContainer,SequencePlotContainer,SpreadSheetRowContainer,TimeseriesContainer,XYSequenceContainer
public interface NamedContainer extends MutableIDHandler
Interface for containers that are have a unique ID string.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDisplayID()Returns the displayed container's ID.StringgetID()Returns the container's ID.voidsetID(String value)Sets the container's ID.
-
-
-
Method Detail
-
setID
void setID(String value)
Sets the container's ID.- Specified by:
setIDin interfaceMutableIDHandler- Parameters:
value- the new ID
-
getID
String getID()
Returns the container's ID.
-
getDisplayID
String getDisplayID()
Returns the displayed container's ID.- Returns:
- the displayed ID
-
-