Package javafx.beans.property

Examples of javafx.beans.property.SimpleStringProperty


            titleFont.set(TITLE_FONT);
        }
    }
    public final StringProperty titleFontProperty() {
        if (null == titleFont) {
            titleFont = new SimpleStringProperty(this, "titleFont", _titleFont);
        }
        return titleFont;
    }
View Full Code Here


            unitFont.set(UNIT_FONT);
        }
    }
    public final StringProperty unitFontProperty() {
        if (null == unitFont) {
            unitFont = new SimpleStringProperty(this, "unitFont", _unitFont);
        }
        return unitFont;
    }
View Full Code Here

            smallFont.set(SMALL_FONT);
        }
    }
    public final StringProperty smallFontProperty() {
        if (null == smallFont) {
            smallFont = new SimpleStringProperty(this, "smallFont", _smallFont);
        }
        return smallFont;
    }
View Full Code Here

        properties.put("textColor", new SimpleObjectProperty<Color>(TEXT_COLOR));
        return this;
    }

    public final SplitFlapBuilder text(final String TEXT) {
        properties.put("text", new SimpleStringProperty(TEXT));
        return this;
    }
View Full Code Here

        properties.put("sections", new SimpleListProperty<>(SECTIONS));
        return this;
    }
   
    public final VuMeterBuilder styleClass(final String STYLE_CLASS) {
        properties.put("styleClass", new SimpleStringProperty(STYLE_CLASS));
        return this;
    }
View Full Code Here

            character.set(Integer.toString(CHARACTER < 0 ? 0 : (CHARACTER > 9 ? 9 : CHARACTER)));
        }
    }
    public final ReadOnlyStringProperty characterProperty() {
        if (null == character) {
            character = new SimpleStringProperty(this, "character", _character);
        }
        return character;
    }
View Full Code Here

            unit.set(UNIT);
        }
    }
    public final StringProperty unitProperty() {
        if (null == unit) {
            unit = new SimpleStringProperty(this, "unit", _unit);
        }
        return unit;
    }
View Full Code Here

    public static final LcdClockBuilder create() {
        return new LcdClockBuilder();
    }

    public final LcdClockBuilder styleClass(final String STYLE_CLASS) {
        properties.put("styleClass", new SimpleStringProperty(STYLE_CLASS));
        return this;
    }
View Full Code Here

        properties.put("foregroundShadowVisible", new SimpleBooleanProperty(FOREGROUND_SHADOW_VISIBLE));
        return this;
    }

    public final LcdClockBuilder title(final String TITLE) {
        properties.put("title", new SimpleStringProperty(TITLE));
        return this;
    }
View Full Code Here

        properties.put("alarmsList", new SimpleObjectProperty<>(ALARMS));
        return this;
    }
      
    public final LcdClockBuilder titleFont(final String TITLE_FONT) {
        properties.put("titleFont", new SimpleStringProperty(TITLE_FONT));
        return this;
    }
View Full Code Here

TOP

Related Classes of javafx.beans.property.SimpleStringProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.