104105106107108109110111
properties.put("title", new SimpleStringProperty(TITLE)); return this; } public final GaugeBuilder unit(final String UNIT) { properties.put("unit", new SimpleStringProperty(UNIT)); return this; }
5152535455565758
public final static ClockBuilder create() { return new ClockBuilder(); } public final ClockBuilder text(final String TEXT) { properties.put("text", new SimpleStringProperty(TEXT)); return this; }
380381382383384385386387388
text.set(TEXT); } } public final StringProperty textProperty() { if (null == text) { text = new SimpleStringProperty(this, "text", _text); } return text; }
594595596597598599600601602
title.set(TITLE); } } public final StringProperty titleProperty() { if (null == title) { title = new SimpleStringProperty(this, "title", _title); } return title; }
611612613614615616617618619
unit.set(UNIT); } } public final StringProperty unitProperty() { if (null == unit) { unit = new SimpleStringProperty(this, "unit", _unit); } return unit; }
628629630631632633634635636
lowerCenterText.set(LOWER_CENTER_TEXT); } } public final StringProperty lowerCenterTextProperty() { if (null == lowerCenterText) { lowerCenterText = new SimpleStringProperty(this, "lowerCenterText", _lowerCenterText); } return lowerCenterText; }
858687888990919293
662663664665666667668669670
lowerRightText.set(LOWER_RIGHT_TEXT); } } public final StringProperty lowerRightTextProperty() { if (null == lowerRightText) { lowerRightText = new SimpleStringProperty(this, "lowerRightText", _lowerRightText); } return lowerRightText; }
696697698699700701702703704
upperLeftText.set(UPPER_LEFT_TEXT); } } public final StringProperty upperLeftTextProperty() { if (null == upperLeftText) { upperLeftText = new SimpleStringProperty(this, "upperLeftText", _upperLeftText); } return upperLeftText; }
730731732733734735736737738
upperRightText.set(UPPER_RIGHT_TEXT); } } public final StringProperty upperRightTextProperty() { if (null == upperRightText) { upperRightText = new SimpleStringProperty(this, "upperRightText", _upperRightText); } return upperRightText; }