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)); }
128129130131132133134
public void setKey(Comparable key) { if (key == null) { throw new IllegalArgumentException("Null 'key' argument."); } this.key = key; notifyListeners(new MarkerChangeEvent(this)); }
150151152153154155156
* * @param drawAsLine the flag. */ public void setDrawAsLine(boolean drawAsLine) { this.drawAsLine = drawAsLine; notifyListeners(new MarkerChangeEvent(this)); }
117118119120121122123
* * @since 1.0.3 */ public void setValue(double value) { this.value = value; notifyListeners(new MarkerChangeEvent(this)); }