| java.lang.Object org.jfree.chart.plot.Marker org.jfree.chart.plot.IntervalMarker
Constructor Summary | |
public | IntervalMarker(double start, double end) Constructs an interval marker. | public | IntervalMarker(double start, double end, Paint paint, Stroke stroke, Paint outlinePaint, Stroke outlineStroke, float alpha) Constructs an interval marker. |
IntervalMarker | public IntervalMarker(double start, double end)(Code) | | Constructs an interval marker.
Parameters: start - the start of the interval. Parameters: end - the end of the interval. |
IntervalMarker | public IntervalMarker(double start, double end, Paint paint, Stroke stroke, Paint outlinePaint, Stroke outlineStroke, float alpha)(Code) | | Constructs an interval marker.
Parameters: start - the start of the interval. Parameters: end - the end of the interval. Parameters: paint - the paint. Parameters: stroke - the stroke. Parameters: outlinePaint - the outline paint. Parameters: outlineStroke - the outline stroke. Parameters: alpha - the alpha transparency. |
equals | public boolean equals(Object obj)(Code) | | Tests the marker for equality with an arbitrary object.
Parameters: obj - the object (null permitted). A boolean. |
getEndValue | public double getEndValue()(Code) | | Returns the end value for the interval.
The end value. |
getGradientPaintTransformer | public GradientPaintTransformer getGradientPaintTransformer()(Code) | | Returns the gradient paint transformer.
The gradient paint transformer (possibly null ). |
getStartValue | public double getStartValue()(Code) | | Returns the start value for the interval.
The start value. |
setEndValue | public void setEndValue(double value)(Code) | | Sets the end value for the marker and sends a
MarkerChangeEvent to all registered listeners.
Parameters: value - the value. since: 1.0.3 |
setGradientPaintTransformer | public void setGradientPaintTransformer(GradientPaintTransformer transformer)(Code) | | Sets the gradient paint transformer and sends a
MarkerChangeEvent to all registered listeners.
Parameters: transformer - the transformer (null permitted). |
setStartValue | public void setStartValue(double value)(Code) | | Sets the start value for the marker and sends a
MarkerChangeEvent to all registered listeners.
Parameters: value - the value. since: 1.0.3 |
|
|