Panel
Container
Example:
TextField tf = new TextField("[Enter Value Here!]"); tf.setBounds(5, 5, 150, 25); Panel p = new Panel(); p.setBounds(10, 10, 200, 100); p.getChildren().add(tf); Frame f = Application.current().getFrame(); f.getChildren().add(p);