145146147148149150151152153
public final void setText(final String TEXT) { textProperty().set(TEXT); } public final StringProperty textProperty() { if (null == text) { text = new SimpleStringProperty(this, "text", ""); } return text; }
154155156157158159160161162
public void setUnit(final String UNIT) { unitProperty().set(UNIT); } public final StringProperty unitProperty() { if (null == unit) { unit = new SimpleStringProperty(this, "unit", ""); } return unit; }
167168169170171172173174175
public final void setFrom(final String FROM) { fromProperty().set(FROM); } public final StringProperty fromProperty() { if (null == from) { from = new SimpleStringProperty(this, "from", ""); } return from; }
180181182183184185186187188
public final void setTo(final String TO) { toProperty().set(TO); } public final StringProperty toProperty() { if (null == to) { to = new SimpleStringProperty(this, "to", ""); } return to; }
238239240241242243244245246
infoText.set(INFO_TEXT); } } public final StringProperty infoTextProperty() { if (null == infoText) { infoText = new SimpleStringProperty(this, "infoText", _infoText); } return infoText; }
186187188189190191192193194
character.set(String.valueOf(CHARACTER)); } } public final StringProperty characterProperty() { if (null == character) { character = new SimpleStringProperty(this, "character", _character); } return character; }
274275276277278279280281282
unit.set(UNIT); } } public final StringProperty unitProperty() { if (null == unit) { unit = new SimpleStringProperty(this, "unit", _unit); } return unit; }
468469470471472473474475476
title.set(TITLE); } } public final StringProperty titleProperty() { if (null == title) { title = new SimpleStringProperty(this, "title", _title); } return title; }
4647484950515253
public static final SimpleIndicatorBuilder create() { return new SimpleIndicatorBuilder(); } public final SimpleIndicatorBuilder styleClass(final String STYLE_CLASS) { properties.put("styleClass", new SimpleStringProperty(STYLE_CLASS)); return this; }
99100101102103104105106
properties.put("decimals", new SimpleIntegerProperty(DECIMALS)); return this; } public final GaugeBuilder title(final String TITLE) { properties.put("title", new SimpleStringProperty(TITLE)); return this; }