Package weka.knowledgeflow.steps
Interface BoundaryPlotter.RenderingUpdateListener
-
- All Known Implementing Classes:
BoundaryPlotterInteractiveView
- Enclosing class:
- BoundaryPlotter
public static interface BoundaryPlotter.RenderingUpdateListenerInterface for something that wants to be informed of rendering progress updates
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcurrentPlotRowCompleted(int row)Called when rendering of a row in the current plot has completedvoidnewPlotStarted(java.lang.String description)Called when a new plot is startedvoidrenderingImageUpdate()Called when a change (other than rendering a row) to the current plot has occurred.
-
-
-
Method Detail
-
newPlotStarted
void newPlotStarted(java.lang.String description)
Called when a new plot is started- Parameters:
description- the description/title of the plot
-
currentPlotRowCompleted
void currentPlotRowCompleted(int row)
Called when rendering of a row in the current plot has completed- Parameters:
row- the index of the row that was completed
-
renderingImageUpdate
void renderingImageUpdate()
Called when a change (other than rendering a row) to the current plot has occurred.
-
-