111112113114115116117118
properties.put("titleFont", new SimpleStringProperty(TITLE_FONT)); return this; } public final LcdClockBuilder secondFont(final String SECOND_FONT) { properties.put("secondFont", new SimpleStringProperty(SECOND_FONT)); return this; }
121122123124125126127128
properties.put("timeFont", new SimpleObjectProperty<LcdClock.LcdFont>(TIME_FONT)); return this; } public final LcdClockBuilder smallFont(final String SMALL_FONT) { properties.put("smallFont", new SimpleStringProperty(SMALL_FONT)); return this; }
273274275276277278279280281
title.set(TITLE); } } public final StringProperty titleProperty() { if (null == title) { title = new SimpleStringProperty(this, "title", _title); } return title; }
377378379380381382383384385
titleFont.set(TITLE_FONT); } } public final StringProperty titleFontProperty() { if (null == titleFont) { titleFont = new SimpleStringProperty(this, "titleFont", _titleFont); } return titleFont; }
411412413414415416417418419
smallFont.set(SMALL_FONT); } } public final StringProperty smallFontProperty() { if (null == smallFont) { smallFont = new SimpleStringProperty(this, "smallFont", _smallFont); } return smallFont; }
5455565758596061
properties.put("stop", new SimpleDoubleProperty(STOP)); return this; } public final SectionBuilder text(final String TEXT) { properties.put("text", new SimpleStringProperty(TEXT)); return this; }
6465666768697071
properties.put("icon", new SimpleObjectProperty<>(IMAGE)); return this; } public final SectionBuilder 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 RadialBargraphBuilder title(final String TITLE) { properties.put("title", new SimpleStringProperty(TITLE)); return this; }
104105106107108109110111
properties.put("title", new SimpleStringProperty(TITLE)); return this; } public final RadialBargraphBuilder unit(final String UNIT) { properties.put("unit", new SimpleStringProperty(UNIT)); return this; }
261262263264265266267268269
nextSelectionIndex = currentSelectionIndex + 1 > selectedSet.size() ? 0 : currentSelectionIndex + 1; } } public final StringProperty textProperty() { if (null == text) { text = new SimpleStringProperty(this, "text", _text); } return text; }