Example usage for javafx.scene Node setManaged

List of usage examples for javafx.scene Node setManaged

Introduction

In this page you can find the example usage for javafx.scene Node setManaged.

Prototype

public final void setManaged(boolean value) 

Source Link

Usage

From source file:org.apache.cayenne.modeler.layout.AbstractViewLayout.java

public void setVisibility(final Node item, final boolean state) {
    item.setVisible(state);//from   w w  w  .j a va 2  s . c om
    item.setManaged(state);
}

From source file:org.sleuthkit.autopsy.timeline.ui.detailview.EventNodeBase.java

static void show(Node b, boolean show) {
    b.setVisible(show);
    b.setManaged(show);
}