So what you are really asking is how to add your TextFields (AWT) or JTextFields (Swing) to a Frame or JFrame?
aFrame.add(aField)
OR
jFrame.getContentPane().add(jField)
There's a little more to it, since the default layout manager for a Frame or JFrame is java.awt.BorderLayout. Just adding fields to it will put all your fields on top of each other in the center. Try a GridLayout with two rows and alternate adding a Label (or JLabel) and a field.
For more information, consult the
Java Tutorial: Creating a GUI with Swing. The "Laying Out Components Within a Container" chapter will be particularly helpful.