Method Summary |
|
public void | addChangeListener(MarkerChangeListener listener) Registers an object for notification of changes to the marker. |
public Object | clone() Creates a clone of the marker. |
public boolean | equals(Object obj) Tests the marker for equality with an arbitrary object.
Parameters: obj - the object (null permitted). |
public float | getAlpha() Returns the alpha transparency. |
public String | getLabel() Returns the label (if null no label is displayed). |
public RectangleAnchor | getLabelAnchor() Returns the label anchor. |
public Font | getLabelFont() Returns the label font. |
public RectangleInsets | getLabelOffset() Returns the label offset. |
public LengthAdjustmentType | getLabelOffsetType() Returns the label offset type. |
public Paint | getLabelPaint() Returns the label paint. |
public TextAnchor | getLabelTextAnchor() Returns the label text anchor. |
public EventListener[] | getListeners(Class listenerType) Returns an array containing all the listeners of the specified type.
Parameters: listenerType - the listener type. |
public Paint | getOutlinePaint() Returns the outline paint. |
public Stroke | getOutlineStroke() Returns the outline stroke. |
public Paint | getPaint() Returns the paint. |
public Stroke | getStroke() Returns the stroke. |
public void | notifyListeners(MarkerChangeEvent event) Notifies all registered listeners that the marker has been modified. |
public void | removeChangeListener(MarkerChangeListener listener) Unregisters an object for notification of changes to the marker. |
public void | setAlpha(float alpha) Sets the alpha transparency that should be used when drawing the
marker, and sends a
MarkerChangeEvent to all registered
listeners. |
public void | setLabel(String label) Sets the label (if null no label is displayed) and sends a
MarkerChangeEvent to all registered listeners. |
public void | setLabelAnchor(RectangleAnchor anchor) Sets the label anchor and sends a
MarkerChangeEvent to all
registered listeners. |
public void | setLabelFont(Font font) Sets the label font and sends a
MarkerChangeEvent to all
registered listeners. |
public void | setLabelOffset(RectangleInsets offset) Sets the label offset and sends a
MarkerChangeEvent to all
registered listeners. |
public void | setLabelOffsetType(LengthAdjustmentType adj) Sets the label offset type and sends a
MarkerChangeEvent to all
registered listeners. |
public void | setLabelPaint(Paint paint) Sets the label paint and sends a
MarkerChangeEvent to all
registered listeners. |
public void | setLabelTextAnchor(TextAnchor anchor) Sets the label text anchor and sends a
MarkerChangeEvent to
all registered listeners. |
public void | setOutlinePaint(Paint paint) Sets the outline paint and sends a
MarkerChangeEvent to all
registered listeners. |
public void | setOutlineStroke(Stroke stroke) Sets the outline stroke and sends a
MarkerChangeEvent to all
registered listeners. |
public void | setPaint(Paint paint) Sets the paint and sends a
MarkerChangeEvent to all registered
listeners. |
public void | setStroke(Stroke stroke) Sets the stroke and sends a
MarkerChangeEvent to all registered
listeners. |