Package docking.util

Interface AnimationPainter


public interface AnimationPainter
An interface used with AnimationUtils to allow clients to use the timing framework while performing their own painting.
  • Method Summary

    Change
    Modifier and Type
    Method
    Description
    MODIFIED
    void
    paint(GGlassPane glassPane, Graphics graphics, double value)
    Called back each time the animation system generates a timing event.
  • Method Details

    • paint MODIFIED

      void paint(GGlassPane glassPane, Graphics graphics, double value)
      param 3 renamed: percentComplete → value
      -void paint(ghidra.util.bean.GGlassPane glassPane, java.awt.Graphics graphics, double percentComplete)
      +void paint(ghidra.util.bean.GGlassPane glassPane, java.awt.Graphics graphics, double value)
      Called back each time the animation system generates a timing event.
      Parameters:
      glassPane - the glass pane upon which painting takes place
      graphics - the graphics used to paint
      value (was: percentComplete) - a value from from the range supplied to the animator when it was created