| java.lang.Object org.jfree.chart.plot.MeterInterval
MeterInterval | public class MeterInterval implements Serializable(Code) | | An interval to be highlighted on a
MeterPlot . Instances of this
class are immutable.
|
MeterInterval | public MeterInterval(String label, Range range)(Code) | | Creates a new interval.
Parameters: label - the label (null not permitted). Parameters: range - the range (null not permitted). |
MeterInterval | public MeterInterval(String label, Range range, Paint outlinePaint, Stroke outlineStroke, Paint backgroundPaint)(Code) | | Creates a new interval.
Parameters: label - the label (null not permitted). Parameters: range - the range (null not permitted). Parameters: outlinePaint - the outline paint (null permitted). Parameters: outlineStroke - the outline stroke (null permitted). Parameters: backgroundPaint - the background paint (null permitted). |
equals | public boolean equals(Object obj)(Code) | | Checks this instance for equality with an arbitrary object.
Parameters: obj - the object (null permitted). A boolean. |
getBackgroundPaint | public Paint getBackgroundPaint()(Code) | | Returns the background paint. If null , the background
should remain unfilled.
The background paint (possibly null ). |
getLabel | public String getLabel()(Code) | | Returns the label.
The label (never null ). |
getOutlinePaint | public Paint getOutlinePaint()(Code) | | Returns the outline paint.
The outline paint (possibly null ). |
getOutlineStroke | public Stroke getOutlineStroke()(Code) | | Returns the outline stroke.
The outline stroke (possibly null ). |
getRange | public Range getRange()(Code) | | Returns the range.
The range (never null ). |
|
|