Interface InteractiveRendering

  • All Superinterfaces:
    Rendering

    public interface InteractiveRendering
    extends Rendering
    An interactive rendering is used to render graphical data representations on a GUI widget, allowing for rendering of invalidated regions.
    • Method Detail

      • invalidateRegion

        void invalidateRegion​(Rectangle region)
        Invalidates the given view region so that it becomes repainted as soon as possible.
        Parameters:
        region - The region to be invalidated (in view coordinates).
      • invokeLater

        void invokeLater​(Runnable task)
        Runs the given task in the thread that is used by the GUI library. In Swing, this would be the Event Dispatcher Thread (EDT).
        Parameters:
        task - The task to be invoked.