Example usage for javafx.scene Parent toBack

List of usage examples for javafx.scene Parent toBack

Introduction

In this page you can find the example usage for javafx.scene Parent toBack.

Prototype

public void toBack() 

Source Link

Document

Moves this Node to the back of its sibling nodes in terms of z-order.

Usage

From source file:com.bekwam.mavenpomupdater.AlertController.java

@FXML
public void action() {

    if (log.isDebugEnabled()) {
        log.debug("[ACTION]");
    }//  ww  w. ja  va  2s.c o  m

    Parent flowPane = gp.getParent();
    flowPane.toBack();
}

From source file:com.bekwam.mavenpomupdater.AlertController.java

@FXML
public void cancel() {

    if (log.isDebugEnabled()) {
        log.debug("[CANCEL]");
    }//  ww  w .  j  a va  2 s .  c  om

    Parent flowPane = gp.getParent();
    flowPane.toBack();
}

From source file:com.bekwam.mavenpomupdater.AlertController.java

@FXML
public void ok() {

    if (log.isDebugEnabled()) {
        log.debug("[OK]");
    }/*from   w  w  w.ja  v a  2  s . com*/

    okCallback.accept(mainViewControllerRef.get());

    Parent flowPane = gp.getParent();
    flowPane.toBack();
}