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; }
144145146147148149150151152153154155156157158159
// Write a node .... nodewriter.write( writer, new URI("urn:ident"), new URI("urn:type"), new SimpleStringProperty( null, new URI("urn:property/000"), "value" ), new SimpleStringProperty( null, new URI("urn:property/001"), "value" ) );
342343344345346347348349350351352
public Property set(final URI type, final String value) { return new WrappedProperty( parent, internal( new SimpleStringProperty( internal, type, value ) ).properties().get(type)