987988989990991992993994995
titleFont.set(TITLE_FONT); } } public final StringProperty titleFontProperty() { if (null == titleFont) { titleFont = new SimpleStringProperty(this, "titleFont", _titleFont); } return titleFont; }
100410051006100710081009101010111012
unitFont.set(UNIT_FONT); } } public final StringProperty unitFontProperty() { if (null == unitFont) { unitFont = new SimpleStringProperty(this, "unitFont", _unitFont); } return unitFont; }
103810391040104110421043104410451046
smallFont.set(SMALL_FONT); } } public final StringProperty smallFontProperty() { if (null == smallFont) { smallFont = new SimpleStringProperty(this, "smallFont", _smallFont); } return smallFont; }
5758596061626364
properties.put("textColor", new SimpleObjectProperty<Color>(TEXT_COLOR)); return this; } public final SplitFlapBuilder text(final String TEXT) { properties.put("text", new SimpleStringProperty(TEXT)); return this; }
7475767778798081
properties.put("sections", new SimpleListProperty<>(SECTIONS)); return this; } public final VuMeterBuilder styleClass(final String STYLE_CLASS) { properties.put("styleClass", new SimpleStringProperty(STYLE_CLASS)); return this; }
205206207208209210211212213
character.set(Integer.toString(CHARACTER < 0 ? 0 : (CHARACTER > 9 ? 9 : CHARACTER))); } } public final ReadOnlyStringProperty characterProperty() { if (null == character) { character = new SimpleStringProperty(this, "character", _character); } return character; }
390391392393394395396397398
unit.set(UNIT); } } public final StringProperty unitProperty() { if (null == unit) { unit = new SimpleStringProperty(this, "unit", _unit); } return unit; }
5152535455565758
public static final LcdClockBuilder create() { return new LcdClockBuilder(); } public final LcdClockBuilder styleClass(final String STYLE_CLASS) { properties.put("styleClass", new SimpleStringProperty(STYLE_CLASS)); return this; }
9192939495969798
properties.put("foregroundShadowVisible", new SimpleBooleanProperty(FOREGROUND_SHADOW_VISIBLE)); return this; } public final LcdClockBuilder title(final String TITLE) { properties.put("title", new SimpleStringProperty(TITLE)); return this; }
106107108109110111112113
properties.put("alarmsList", new SimpleObjectProperty<>(ALARMS)); return this; } public final LcdClockBuilder titleFont(final String TITLE_FONT) { properties.put("titleFont", new SimpleStringProperty(TITLE_FONT)); return this; }