Package javafx.beans.property

Examples of javafx.beans.property.SimpleBooleanProperty


    public final void setSectionRangeVisible(final boolean SECTION_RANGE_VISIBLE) {
        sectionRangeVisibleProperty().set(SECTION_RANGE_VISIBLE);
    }
    public final BooleanProperty sectionRangeVisibleProperty() {
        if (null == sectionRangeVisible) {
            sectionRangeVisible = new SimpleBooleanProperty(this, "sectionRangeVisible", false);
        }
        return sectionRangeVisible;
    }
View Full Code Here


    public final void setTitleVisible(final boolean TITLE_VISIBLE) {
        titleVisibleProperty().set(TITLE_VISIBLE);
    }
    public final BooleanProperty titleVisibleProperty() {
        if (null == titleVisible) {
            titleVisible = new SimpleBooleanProperty(this, "titleVisible", true);
        }
        return titleVisible;
    }
View Full Code Here

        };
        _minMeasuredValue = maxValue.getValue();
        _maxMeasuredValue = 0;
        _decimals         = 0;
        _infoText         = "";
        targetEnabled     = new SimpleBooleanProperty(this, "targetEnabled", false);
        _startAngle       = 325;
        _angleRange       = 290;               
    }
View Full Code Here

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

    public final SignalTowerBuilder greenOn(final boolean GREEN_ON) {
        properties.put("greenOn", new SimpleBooleanProperty(GREEN_ON));
        return this;
    }
View Full Code Here

        properties.put("greenOn", new SimpleBooleanProperty(GREEN_ON));
        return this;
    }

    public final SignalTowerBuilder yellowOn(final boolean YELLOW_ON) {
        properties.put("yellowOn", new SimpleBooleanProperty(YELLOW_ON));
        return this;
    }
View Full Code Here

        properties.put("yellowOn", new SimpleBooleanProperty(YELLOW_ON));
        return this;
    }

    public final SignalTowerBuilder redOn(final boolean RED_ON) {
        properties.put("redOn", new SimpleBooleanProperty(RED_ON));
        return this;
    }
View Full Code Here

            backgroundVisible.set(BACKGROUND_VISIBLE);
        }
    }
    public final BooleanProperty backgroundVisibleProperty() {
        if (null == backgroundVisible) {
            backgroundVisible = new SimpleBooleanProperty(this, "backgroundVisible", _backgroundVisible);
        }
        return backgroundVisible;
    }
View Full Code Here

            highlightsVisible.set(HIGHLIGHTS_VISIBLE);
        }
    }
    public final BooleanProperty highlightsVisibleProperty() {
        if (null == highlightsVisible) {
            highlightsVisible = new SimpleBooleanProperty(this, "highlightsVisible", _highlightsVisible);
        }
        return highlightsVisible;
    }
View Full Code Here

            glowEnabled.set(GLOW_ENABLED);
        }
    }
    public final BooleanProperty glowEnabledProperty() {
        if (null == glowEnabled) {
            glowEnabled = new SimpleBooleanProperty(this, "glowEnabled", _glowEnabled);
        }
        return glowEnabled;
    }
View Full Code Here

        properties.put("thumbColor", new SimpleObjectProperty<>(THUMB_COLOR));
        return this;
    }

    public final OnOffSwitchBuilder on(final boolean ON) {
        properties.put("on", new SimpleBooleanProperty(ON));
        return this;
    }
View Full Code Here

TOP

Related Classes of javafx.beans.property.SimpleBooleanProperty

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.