9596979899100101102103
text.set(TEXT); } } public final StringProperty textProperty() { if (null == text) { text = new SimpleStringProperty(this, "text", _text); } return text; }
4445464748495051
public static final SixteenSegmentBuilder create() { return new SixteenSegmentBuilder(); } public final SixteenSegmentBuilder styleClass(final String STYLE_CLASS) { properties.put("styleClass", new SimpleStringProperty(STYLE_CLASS)); return this; }
5455565758596061
properties.put("segmentStyle", new SimpleObjectProperty<SixteenSegment.SegmentStyle>(SEGMENT_STYLE)); return this; } public final SixteenSegmentBuilder character(final String CHARACTER) { properties.put("characterString", new SimpleStringProperty(CHARACTER)); return this; }
5051525354555657
public static final LcdBuilder create() { return new LcdBuilder(); } public final LcdBuilder styleClass(final String STYLE_CLASS) { properties.put("styleClass", new SimpleStringProperty(STYLE_CLASS)); return this; }
6061626364656667
properties.put("textMode", new SimpleBooleanProperty(TEXT_MODE)); return this; } public final LcdBuilder text(final String TEXT) { properties.put("text", new SimpleStringProperty(TEXT)); return this; }
150151152153154155156157
properties.put("maxMeasuredValueDecimals", new SimpleIntegerProperty(MAX_MEASURED_VALUE_DECIMALS)); return this; } public final LcdBuilder lowerCenterText(final String LOWER_CENTER_TEXT) { properties.put("lowerCenterText", new SimpleStringProperty(LOWER_CENTER_TEXT)); return this; }
165166167168169170171172
properties.put("formerValueVisible", new SimpleBooleanProperty(FORMER_VALUE_VISIBLE)); return this; } public final LcdBuilder title(final String TITLE) { properties.put("title", new SimpleStringProperty(TITLE)); return this; }
175176177178179180181182
properties.put("titleVisible", new SimpleBooleanProperty(TITLE_VISIBLE)); return this; } public final LcdBuilder unit(final String UNIT) { properties.put("unit", new SimpleStringProperty(UNIT)); return this; }
185186187188189190191192
properties.put("unitVisible", new SimpleBooleanProperty(UNIT_VISIBLE)); return this; } public final LcdBuilder lowerRightText(final String LOWER_RIGHT_TEXT) { properties.put("lowerRightText", new SimpleStringProperty(LOWER_RIGHT_TEXT)); return this; }
195196197198199200201202
properties.put("lowerRightTextVisible", new SimpleBooleanProperty(LOWER_RIGHT_TEXT_VISIBLE)); return this; } public final LcdBuilder upperLeftText(final String UPPER_LEFT_TEXT) { properties.put("upperLeftText", new SimpleStringProperty(UPPER_LEFT_TEXT)); return this; }