Module platform

Class StandardDialFrame

java.lang.Object
org.jfree.chart.plot.dial.AbstractDialLayer
org.jfree.chart.plot.dial.StandardDialFrame
All Implemented Interfaces:
Serializable, Cloneable, DialFrame, DialLayer, PublicCloneable

public class StandardDialFrame extends AbstractDialLayer implements DialFrame, Cloneable, PublicCloneable, Serializable
A simple circular frame for the DialPlot class.
See Also:
  • Constructor Details

    • StandardDialFrame

      public StandardDialFrame()
      Creates a new instance of StandardDialFrame.
  • Method Details

    • getRadius

      public double getRadius()
      Returns the radius, relative to the framing rectangle.
      Returns:
      The radius.
      See Also:
    • setRadius

      public void setRadius(double radius)
      Sets the radius and sends a DialLayerChangeEvent to all registered listeners.
      Parameters:
      radius - the radius (must be positive).
      See Also:
    • getBackgroundPaint

      public Paint getBackgroundPaint()
      Returns the background paint.
      Returns:
      The background paint (never null).
      See Also:
    • setBackgroundPaint

      public void setBackgroundPaint(Paint paint)
      Sets the background paint and sends a DialLayerChangeEvent to all registered listeners.
      Parameters:
      paint - the paint (null not permitted).
      See Also:
    • getForegroundPaint

      public Paint getForegroundPaint()
      Returns the foreground paint.
      Returns:
      The foreground paint (never null).
      See Also:
    • setForegroundPaint

      public void setForegroundPaint(Paint paint)
      Sets the foreground paint and sends a DialLayerChangeEvent to all registered listeners.
      Parameters:
      paint - the paint (null not permitted).
      See Also:
    • getStroke

      public Stroke getStroke()
      Returns the stroke for the frame.
      Returns:
      The stroke (never null).
      See Also:
    • setStroke

      public void setStroke(Stroke stroke)
      Sets the stroke and sends a DialLayerChangeEvent to all registered listeners.
      Parameters:
      stroke - the stroke (null not permitted).
      See Also:
    • getWindow

      public Shape getWindow(Rectangle2D frame)
      Returns the shape for the window for this dial. Some dial layers will request that their drawing be clipped within this window.
      Specified by:
      getWindow in interface DialFrame
      Parameters:
      frame - the reference frame (null not permitted).
      Returns:
      The shape of the dial's window.
    • isClippedToWindow

      public boolean isClippedToWindow()
      Returns false to indicate that this dial layer is not clipped to the dial window.
      Specified by:
      isClippedToWindow in interface DialLayer
      Returns:
      A boolean.
    • draw

      public void draw(Graphics2D g2, DialPlot plot, Rectangle2D frame, Rectangle2D view)
      Draws the frame. This method is called by the DialPlot class, you shouldn't need to call it directly.
      Specified by:
      draw in interface DialLayer
      Parameters:
      g2 - the graphics target (null not permitted).
      plot - the plot (null not permitted).
      frame - the frame (null not permitted).
      view - the view (null not permitted).
    • equals

      public boolean equals(Object obj)
      Tests this instance for equality with an arbitrary object.
      Overrides:
      equals in class AbstractDialLayer
      Parameters:
      obj - the object (null permitted).
      Returns:
      A boolean.
    • hashCode

      public int hashCode()
      Returns a hash code for this instance.
      Overrides:
      hashCode in class AbstractDialLayer
      Returns:
      The hash code.
    • clone

      public Object clone() throws CloneNotSupportedException
      Returns a clone of this instance.
      Specified by:
      clone in interface PublicCloneable
      Overrides:
      clone in class AbstractDialLayer
      Returns:
      A clone.
      Throws:
      CloneNotSupportedException - if any of the frame's attributes cannot be cloned.