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 String
getDisplayID()
Returns the displayed container's ID.String
getID()
Returns the container's ID.void
setID(String value)
Sets the container's ID.
-
-
-
Method Detail
-
setID
void setID(String value)
Sets the container's ID.- Specified by:
setID
in 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
-
-