Package javafx.beans.property

Examples of javafx.beans.property.SimpleStringProperty


            text.set(TEXT);
        }
    }
    public final StringProperty textProperty() {
        if (null == text) {
            text = new SimpleStringProperty(this, "text", _text);
        }
        return text;
    }
View Full Code Here


    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;
    }
View Full Code Here

        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;
    }
View Full Code Here

    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;
    }
View Full Code Here

        properties.put("textMode", new SimpleBooleanProperty(TEXT_MODE));
        return this;
    }

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

        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;
    }
View Full Code Here

        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;
    }
View Full Code Here

        properties.put("titleVisible", new SimpleBooleanProperty(TITLE_VISIBLE));
        return this;
    }

    public final LcdBuilder unit(final String UNIT) {
        properties.put("unit", new SimpleStringProperty(UNIT));
        return this;
    }
View Full Code Here

        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;
    }
View Full Code Here

        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;
    }
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.