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 Type
    Method
    Description
    void
    Called when rendering of a row in the current plot has completed
    void
    newPlotStarted(String description)
    Called when a new plot is started
    void
    Called when a change (other than rendering a row) to the current plot has occurred.
  • Method Details

    • newPlotStarted

      void newPlotStarted(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.