205206207208209210211212
properties.put("upperLeftTextVisible", new SimpleBooleanProperty(UPPER_LEFT_TEXT_VISIBLE)); return this; } public final LcdBuilder upperRightText(final String UPPER_RIGHT_TEXT) { properties.put("upperRightText", new SimpleStringProperty(UPPER_RIGHT_TEXT)); return this; }
270271272273274275276277
properties.put("numberSystemVisible", new SimpleBooleanProperty(NUMBER_SYSTEM_VISIBLE)); return this; } public final LcdBuilder titleFont(final String TITLE_FONT) { properties.put("titleFont", new SimpleStringProperty(TITLE_FONT)); return this; }
275276277278279280281282
properties.put("titleFont", new SimpleStringProperty(TITLE_FONT)); return this; } public final LcdBuilder unitFont(final String UNIT_FONT) { properties.put("unitFont", new SimpleStringProperty(UNIT_FONT)); return this; }
285286287288289290291292
properties.put("valueFont", new SimpleObjectProperty<Lcd.LcdFont>(VALUE_FONT)); return this; } public final LcdBuilder smallFont(final String SMALL_FONT) { properties.put("smallFont", new SimpleStringProperty(SMALL_FONT)); return this; }
5152535455565758
public static final MenuItemBuilder create() { return new MenuItemBuilder(); } public final MenuItemBuilder tooltip(final String TOOLTIP) { properties.put("tooltip", new SimpleStringProperty(TOOLTIP)); return this; }
96979899100101102103
properties.put("symbol", new SimpleObjectProperty<SymbolType>(SYMBOL_TYPE)); return this; } public final MenuItemBuilder thumbnailImageName(final String THUMBNAIL_IMAGE_NAME) { properties.put("thumbnailImageName", new SimpleStringProperty(THUMBNAIL_IMAGE_NAME)); return this; }
101102103104105106107108
properties.put("thumbnailImageName", new SimpleStringProperty(THUMBNAIL_IMAGE_NAME)); return this; } public final MenuItemBuilder text(final String TEXT) { properties.put("text", new SimpleStringProperty(TEXT)); return this; }
5253545556575859
public final static LedBuilder create() { return new LedBuilder(); } public final LedBuilder styleClass(final String STYLE_CLASS) { properties.put("styleClass", new SimpleStringProperty(STYLE_CLASS)); return this; }
373374375376377378379380381
title.set(TITLE); } } public final StringProperty titleProperty() { if (null == title) { title = new SimpleStringProperty(this, "title", _title); } return title; }
4950515253545556
public final static OnOffSwitchBuilder create() { return new OnOffSwitchBuilder(); } public final OnOffSwitchBuilder styleClass(final String STYLE_CLASS) { properties.put("styleClass", new SimpleStringProperty(STYLE_CLASS)); return this; }