TextInput textInput1 = new TextInput();
textInput1.setText("ABCD");
boxPane1.add(textInput1);
boxPane1.add(new TextInput());
boxPane1.add(new TextInput());
frame1 = new Frame(boxPane1);
frame1.setPreferredSize(320, 240);
frame1.open(display);
BoxPane boxPane2 = new BoxPane(Orientation.VERTICAL);
TextInput textInput2 = new TextInput();
textInput2.setText("1234");
boxPane2.add(textInput2);
boxPane2.add(new TextInput());
boxPane2.add(new TextInput());
frame2 = new Frame(boxPane2);
frame2.setPreferredSize(320, 240);
frame2.open(display);
frame2.requestFocus();
}