当前位置: 首页>>代码示例>>Java>>正文


Java SimpleBooleanProperty类代码示例

本文整理汇总了Java中javafx.beans.property.SimpleBooleanProperty的典型用法代码示例。如果您正苦于以下问题:Java SimpleBooleanProperty类的具体用法?Java SimpleBooleanProperty怎么用?Java SimpleBooleanProperty使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


SimpleBooleanProperty类属于javafx.beans.property包,在下文中一共展示了SimpleBooleanProperty类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: SequenceVisualizer

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
/**
 * Create instance of {@link SequenceVisualizer}.
 */
public SequenceVisualizer() {
    sequenceProperty = new SimpleStringProperty();
    offsetProperty = new SimpleIntegerProperty();
    onScreenBasesProperty = new SimpleIntegerProperty();
    hoveredBaseIdProperty = new SimpleIntegerProperty(-1);

    sequenceProperty.addListener((observable, oldValue, newValue) -> {
        if (offsetProperty.get() == 0) {
            draw(); // force redraw if offset remains unchanged.
        }
        offsetProperty.set(0);
    });
    offsetProperty.addListener((observable, oldValue, newValue) -> draw());
    hoveredBaseIdProperty.addListener((observable, oldValue, newValue) -> draw());

    visibleProperty = new SimpleBooleanProperty(false);
}
 
开发者ID:ProgrammingLife2017,项目名称:hygene,代码行数:21,代码来源:SequenceVisualizer.java

示例2: GlobalConfig

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
/**
 * Creates a default configuration. Paths are set to <tt>[Path to ... Executable]</tt>.
 */
public GlobalConfig() {
  verificationTimeout = new SimpleIntegerProperty(3600);
  simulationTimeout = new SimpleIntegerProperty(60);
  windowMaximized = new SimpleBooleanProperty(true);
  windowHeight = new SimpleIntegerProperty(600);
  windowWidth = new SimpleIntegerProperty(800);
  editorFontSize = new SimpleIntegerProperty(12);
  maxLineRollout = new SimpleIntegerProperty(50);
  editorFontFamily = new SimpleStringProperty("DejaVu Sans Mono");
  showLineNumbers = new SimpleBooleanProperty(true);
  uiLanguage = new SimpleStringProperty("EN");
  nuxmvFilename = new SimpleStringProperty(
      ExecutableLocator.findExecutableFileAsString("nuXmv")
          .orElse("[Path to nuXmv Executable]"));
  z3Path = new SimpleStringProperty(
      ExecutableLocator.findExecutableFileAsString("z3")
      .orElse("[Path to Z3 Executable]"));
  getetaCommand =
      new SimpleStringProperty("java -jar /path/to/geteta.jar -c ${code} -t ${spec} -x");
}
 
开发者ID:VerifAPS,项目名称:stvs,代码行数:24,代码来源:GlobalConfig.java

示例3: addBoolean

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
/**
 * Add a yes/no choice to a wizard step.
 *
 * @param fieldName
 * @param defaultValue
 *            of the choice.
 * @param prompt
 *            the tooltip to show
 * @return
 */
@SuppressWarnings("unchecked")
public WizardStepBuilder addBoolean(final String fieldName, final boolean defaultValue, final String prompt)
{
    final JFXCheckBox box = new JFXCheckBox();
    box.setTooltip(new Tooltip(prompt));
    box.setSelected(defaultValue);

    this.current.getData().put(fieldName, new SimpleBooleanProperty());
    this.current.getData().get(fieldName).bind(box.selectedProperty());

    final Label label = new Label(fieldName);
    GridPane.setHalignment(label, HPos.RIGHT);
    GridPane.setHalignment(box, HPos.LEFT);
    this.current.add(label, 0, this.current.getData().size() - 1);
    this.current.add(box, 1, this.current.getData().size() - 1);
    return this;
}
 
开发者ID:Leviathan-Studio,项目名称:MineIDE,代码行数:28,代码来源:WizardStepBuilder.java

示例4: MyGraphView

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
public MyGraphView(MyGraph<MyVertex, MyEdge> graph) {
    this.graph = graph;
    this.myVertexViewGroup = new Group();
    this.myEdgeViewGroup = new Group();
    this.animationService = new SpringAnimationService(graph);

    this.pausedProperty = new SimpleBooleanProperty(false);

    drawNodes();
    drawEdges();

    getChildren().add(myEdgeViewGroup);
    getChildren().add(myVertexViewGroup);

    // Add all Vertex to the selection Model and add Listener
    selectionModel = new VertexSelectionModel(graph.getVertices().toArray());
    addSelectionListener();
    addPausedListener();

    startLayout();
}
 
开发者ID:jmueller95,项目名称:CORNETTO,代码行数:22,代码来源:MyGraphView.java

示例5: setupListeners

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
private void setupListeners() {
    correlationAndPValueInRange = new SimpleBooleanProperty(true);
    frequencyInRange = new SimpleBooleanProperty(true);
    //Add listeners for the two range properties - if both are false, set hidden to true
    correlationAndPValueInRange.addListener(observable -> {
        if (correlationAndPValueInRange.get() && frequencyInRange.get()) {
            showEdge();
        } else {
            hideEdge();
        }
    });

    frequencyInRange.addListener(observable -> {
        if (correlationAndPValueInRange.get() && frequencyInRange.get()) {
            showEdge();
        } else {
            hideEdge();
        }
    });
}
 
开发者ID:jmueller95,项目名称:CORNETTO,代码行数:21,代码来源:MyEdge.java

示例6: Query

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
/**
 * Creates instance of {@link Query}.
 *
 * @param graphStore the {@link GraphStore} used to retrieve the most up to date graph
 */
@Inject
public Query(final GraphStore graphStore) {
    visibleProperty = new SimpleBooleanProperty();
    queryingProperty = new SimpleBooleanProperty();
    queriedNodeIds = FXCollections.observableArrayList();

    graphStore.getGfaFileProperty().addListener((observable, oldValue, newValue) ->
            setSearchQuery(new SearchQuery(newValue)));
}
 
开发者ID:ProgrammingLife2017,项目名称:hygene,代码行数:15,代码来源:Query.java

示例7: init

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
private void init(long id, long parentId, String title) {
    this.setId(id);
    this.setParentId(parentId);
    this.setTitle(title);
    
    markAsChangedProperty = new SimpleBooleanProperty(Boolean.FALSE);
}
 
开发者ID:Naoghuman,项目名称:ABC-List,代码行数:8,代码来源:Topic.java

示例8: ConstraintSpecificationValidator

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
/**
 * <p>
 * Creates a validator with given observable models as context information.
 * </p>
 *
 * <p>
 * The validator observes changes in any of the given context models. It automatically updates the
 * validated specification (see {@link #validSpecificationProperty()}) and/or the problems with
 * the constraint specification (see {@link #problemsProperty()}).
 * </p>
 *
 * @param typeContext the extracted types (esp. enums) from the code area
 * @param codeIoVariables the extracted {@link CodeIoVariable}s from the code area
 * @param validFreeVariables the most latest validated free variables from the
 *        {@link FreeVariableList}.
 * @param specification the specification to be validated
 */
public ConstraintSpecificationValidator(ObjectProperty<List<Type>> typeContext,
    ObjectProperty<List<CodeIoVariable>> codeIoVariables,
    ReadOnlyObjectProperty<List<ValidFreeVariable>> validFreeVariables,
    ConstraintSpecification specification) {
  this.typeContext = typeContext;
  this.codeIoVariables = codeIoVariables;
  this.validFreeVariables = validFreeVariables;
  this.specification = specification;

  this.problems = new SimpleObjectProperty<>(new ArrayList<>());
  this.validSpecification = new NullableProperty<>();
  this.valid = new SimpleBooleanProperty(false);

  // All these ObservableLists invoke the InvalidationListeners on deep updates
  // So if only a cell in the Specification changes, the change listener on the ObservableList
  // two layers above gets notified.
  specification.getRows().addListener(listenToSpecUpdate);
  specification.getDurations().addListener(listenToSpecUpdate);
  specification.getColumnHeaders().addListener(listenToSpecUpdate);

  typeContext.addListener(listenToSpecUpdate);
  codeIoVariables.addListener(listenToSpecUpdate);
  validFreeVariables.addListener(listenToSpecUpdate);

  recalculateSpecProblems();
}
 
开发者ID:VerifAPS,项目名称:stvs,代码行数:44,代码来源:ConstraintSpecificationValidator.java

示例9: Person

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
private Person(boolean invited, String fName, String lName, String email) {
    this.invited = new SimpleBooleanProperty(invited);
    this.firstName = new SimpleStringProperty(fName);
    this.lastName = new SimpleStringProperty(lName);
    this.email = new SimpleStringProperty(email);
    this.invited = new SimpleBooleanProperty(invited);
    
    this.invited.addListener(new ChangeListener<Boolean>() {
        public void changed(ObservableValue<? extends Boolean> ov, Boolean t, Boolean t1) {
            System.out.println(firstNameProperty().get() + " invited: " + t1);
        }
    });            
}
 
开发者ID:jalian-systems,项目名称:marathonv5,代码行数:14,代码来源:TableCellFactorySample.java

示例10: init

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
private void init (String name, String description, ImageGraphic graphic) {
    myName = new SimpleStringProperty(name);
    myDescription = new SimpleStringProperty(description);
    myImage = graphic;
    myImageWidth = graphic.getWidth();
    myImageHeight = graphic.getHeight();
    imageChange = new SimpleBooleanProperty(false);
}
 
开发者ID:tomrom95,项目名称:GameAuthoringEnvironment,代码行数:9,代码来源:Profile.java

示例11: Check

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
public Check (IAttributeManager attributeManager, AttributeType type, double cost) {
    System.out.println("making");
    myManager = attributeManager;
    myType = type;
    myCost = cost;
    myStatus = new SimpleBooleanProperty(false);
}
 
开发者ID:tomrom95,项目名称:GameAuthoringEnvironment,代码行数:8,代码来源:Check.java

示例12: init

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
private void init(long id, long generationTime, String title) {
    this.setId(id);
    this.setGenerationTime(generationTime);
    this.setTitle(title);
    
    markAsChangedProperty = new SimpleBooleanProperty(Boolean.FALSE);
}
 
开发者ID:Naoghuman,项目名称:ABC-List,代码行数:8,代码来源:Term.java

示例13: initGame

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
public void initGame(Main mainApp, Core c) {
    setMainApp(mainApp);
    setCore(c);
    pieceChosenInInventory = -1;
    highlighted = new Highlighter();
    traductor = new TraducteurBoard();
    lastCoord = new CoordGene<Double>(0.0,0.0);
    animationPlaying = new SimpleBooleanProperty();
    animationPlaying.setValue(false);
    nbMessage = 0;
    nbChatRow = 2;
    inventoryGroup = new ToggleGroup();
    if (!core.hasPreviousState()) {
        undo.setDisable(true);
    }
    if (!core.hasNextState()) {
        redo.setDisable(true);
    }
    initButtonByInventory();
    animation = new AnimationTile(panCanvas,traductor);
    refreshor = new RefreshJavaFX(core, gameCanvas, highlighted, traductor, this);
    initGameCanvas();
    core.setGameScreen(this);
    
    if (core.getMode() == Consts.AIVP && core.getTurn() == 0){
        core.playAI();
    }

    if(core.getMode() != Consts.PVEX && core.getMode() != Consts.EXVP){
        inputChat.setVisible(false);
        textChat.setVisible(false);
        scrollChat.setVisible(false);
    }else{
        hideButtonsForNetwork();
    }
    
    refreshor.start();
}
 
开发者ID:Plinz,项目名称:Hive_Game,代码行数:39,代码来源:GameScreenController.java

示例14: BaseDrag

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
public BaseDrag(T t) {
  super(t);
  this.minX = new SimpleDoubleProperty(0);
  this.minY = new SimpleDoubleProperty(0);
  this.maxX = new SimpleDoubleProperty(Double.MAX_VALUE);
  this.maxY = new SimpleDoubleProperty(Double.MAX_VALUE);
  this.borderWidth = new SimpleDoubleProperty(3);
  this.enable = new SimpleBooleanProperty(true);
}
 
开发者ID:XDean,项目名称:JavaFX-EX,代码行数:10,代码来源:DragSupport.java

示例15: Tab

import javafx.beans.property.SimpleBooleanProperty; //导入依赖的package包/类
public Tab(Button button, final Pane pane) {
    this.button = button;
    this.pane = pane;

    this.button.setOnAction(event
            -> EventExecutor.getInstance().execute(new ChangeTabEvent(Tab.this)));
    this.active = new SimpleBooleanProperty(false);
    this.active.addListener((observable, oldValue, newValue) -> {
        button.pseudoClassStateChanged(TAB_ACTIVE_CLASS, active.get());
        pane.pseudoClassStateChanged(TAB_ACTIVE_CLASS, active.get());
    });
}
 
开发者ID:Superioz,项目名称:MooProject,代码行数:13,代码来源:Tab.java


注:本文中的javafx.beans.property.SimpleBooleanProperty类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。