-
- All Known Implementing Classes:
GrayPaintScale,LookupPaintScale
public interface PaintScale
A source forPaintinstances, used by theXYBlockRenderer.
NOTE: Classes that implement this interface should also implementPublicCloneableandSerializable, so that any renderer (or other object instance) that references an instance of this interface can still be cloned or serialized.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetLowerBound()Returns the lower bound for the scale.PaintgetPaint(double value)Returns aPaintinstance for the specified value.doublegetUpperBound()Returns the upper bound for the scale.
-
-
-
Method Detail
-
getLowerBound
double getLowerBound()
Returns the lower bound for the scale.- Returns:
- The lower bound.
- See Also:
getUpperBound()
-
getUpperBound
double getUpperBound()
Returns the upper bound for the scale.- Returns:
- The upper bound.
- See Also:
getLowerBound()
-
-