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 voidclearPanel()Clears the content of the panel.voiddisplay(Token token)Displays the token.StringgetPanelName()Returns the name of the panel.voidwrapUp()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.
-
-