JTextField Echo = new JTextField(20); // sets number of columns of text
Echo.setSize(w,h); // JTextField inherits from Component. w&h are assumed to be ints for width & height

You can have a...