348349350351352353354
public void setLabelOffsetType(final LengthAdjustmentType adj) { if (adj == null) { throw new IllegalArgumentException("Null 'adj' argument."); } this.labelOffsetType = adj; this.notifyListeners(new MarkerChangeEvent(this)); }
365366367368369370371
public void setLabelPaint(final Color paint) { if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.labelPaint = paint; this.notifyListeners(new MarkerChangeEvent(this)); }
382383384385386387388
public void setLabelTextAnchor(final TextAnchor anchor) { if (anchor == null) { throw new IllegalArgumentException("Null 'anchor' argument."); } this.labelTextAnchor = anchor; this.notifyListeners(new MarkerChangeEvent(this)); }
396397398399400401402
* * @see #getOutlinePaint() */ public void setOutlinePaint(final Color paint) { this.outlinePaint = paint; this.notifyListeners(new MarkerChangeEvent(this)); }
410411412413414415416
* * @see #getOutlineStroke() */ public void setOutlineStroke(final Stroke stroke) { this.outlineStroke = stroke; this.notifyListeners(new MarkerChangeEvent(this)); }
427428429430431432433
public void setPaint(final Color paint) { if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.paint = paint; this.notifyListeners(new MarkerChangeEvent(this)); }
444445446447448449450
public void setStroke(final Stroke stroke) { if (stroke == null) { throw new IllegalArgumentException("Null 'stroke' argument."); } this.stroke = stroke; this.notifyListeners(new MarkerChangeEvent(this)); }