14

check this out

 Group g = new Group();
 GridPane grid = new GridPane(); // 
 g.getChildren().addAll(grid);

now my question is how do i remove this "grid" from "g" without specifying "grid" like something like this

g.getChildren().removeAll(null); //i do not know what to insert here?

thanks in advance

fabian
  • 80,457
  • 12
  • 86
  • 114

1 Answers1

28

If you want to remove all items from a collection, use the clear() method:

g.getChildren().clear();
James_D
  • 201,275
  • 16
  • 291
  • 322