Package adams.flow.sink
Interface DisplayPanel
-
- All Superinterfaces:
CleanUpHandler
- All Known Subinterfaces:
MergeableDisplayPanel<T>
,UpdateableDisplayPanel
- All Known Implementing Classes:
AbstractComponentDisplayPanel
,AbstractDisplayPanel
,AbstractTextAndComponentDisplayPanel
,AbstractTextDisplayPanel
,FilePreview.FilePreviewDisplayPanel
,ImageSegmentationViewer.ImageSegmentationViewerDisplayPanel
,ImageViewer.ImageViewerDisplayPanel
,ObjectPreview.FilePreviewDisplayPanel
,SpreadSheetDisplay.SpreadSheetDisplayPanel
,TimeseriesDisplay.DisplayPanel
public interface DisplayPanel extends CleanUpHandler
Interface for panels that can be created from tokens.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clearPanel()
Clears the content of the panel.void
display(Token token)
Displays the token.String
getPanelName()
Returns the name of the panel.void
wrapUp()
Wraps up the execution.-
Methods inherited from interface adams.core.CleanUpHandler
cleanUp
-
-
-
-
Method Detail
-
getPanelName
String getPanelName()
Returns the name of the panel.- Returns:
- the name
-
display
void display(Token token)
Displays the token.- Parameters:
token
- the token to display
-
clearPanel
void clearPanel()
Clears the content of the panel.
-
wrapUp
void wrapUp()
Wraps up the execution.
-
-