Package weka.knowledgeflow.steps
Interface BoundaryPlotter.RenderingUpdateListener
- All Known Implementing Classes:
BoundaryPlotterInteractiveView
- Enclosing class:
- BoundaryPlotter
public static interface BoundaryPlotter.RenderingUpdateListener
Interface for something that wants to be informed of rendering progress
updates
-
Method Summary
Modifier and TypeMethodDescriptionvoid
currentPlotRowCompleted
(int row) Called when rendering of a row in the current plot has completedvoid
newPlotStarted
(String description) Called when a new plot is startedvoid
Called when a change (other than rendering a row) to the current plot has occurred.
-
Method Details
-
newPlotStarted
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.
-