(double depth)
| 601 | } |
| 602 | |
| 603 | public void setDepth(double depth) { |
| 604 | this.box.setDepth(depth); |
| 605 | this.box.translateYProperty().bind(this.borderPane.translateYProperty().subtract(depth / 2)); |
| 606 | setTranslateY((depth / 2) - (getTranslateY() / 2)); |
| 607 | } |
| 608 | |
| 609 | public double getDepth() { |
| 610 | return this.box.getDepth(); |
no test coverage detected