150151152153154155156
* @param drawAsLine * the flag. */ public void setDrawAsLine(final boolean drawAsLine) { this.drawAsLine = drawAsLine; this.notifyListeners(new MarkerChangeEvent(this)); }
167168169170171172173
public void setKey(final Comparable key) { if (key == null) { throw new IllegalArgumentException("Null 'key' argument."); } this.key = key; this.notifyListeners(new MarkerChangeEvent(this)); }
165166167168169170171
* * @since 1.0.3 */ public void setEndValue(final double value) { this.endValue = value; this.notifyListeners(new MarkerChangeEvent(this)); }
179180181182183184185
* * @since 1.0.3 */ public void setStartValue(final double value) { this.startValue = value; this.notifyListeners(new MarkerChangeEvent(this)); }
148149150151152153154
* * @since 1.0.3 */ public void setValue(final double value) { this.value = value; this.notifyListeners(new MarkerChangeEvent(this)); }
265266267268269270271
* * @see #getAlpha() */ public void setAlpha(final int alpha) { this.alpha = alpha; this.notifyListeners(new MarkerChangeEvent(this)); }
279280281282283284285
* * @see #getLabel() */ public void setLabel(final String label) { this.label = label; this.notifyListeners(new MarkerChangeEvent(this)); }
297298299300301302303
public void setLabelAnchor(final RectangleAnchor anchor) { if (anchor == null) { throw new IllegalArgumentException("Null 'anchor' argument."); } this.labelAnchor = anchor; this.notifyListeners(new MarkerChangeEvent(this)); }
314315316317318319320
public void setLabelFont(final Font font) { if (font == null) { throw new IllegalArgumentException("Null 'font' argument."); } this.labelFont = font; this.notifyListeners(new MarkerChangeEvent(this)); }
331332333334335336337
public void setLabelOffset(final RectangleInsets offset) { if (offset == null) { throw new IllegalArgumentException("Null 'offset' argument."); } this.labelOffset = offset; this.notifyListeners(new MarkerChangeEvent(this)); }