Creates a new SomeGUIPanel object.
this.setLayout(new GridLayout(1, 2));
JLabel label = new JLabel("Age: ", SwingConstants.RIGHT);
this.add(label);
this.valueField = new JTextField();
this.valueField.addActionListener(this);
this.add(this.valueField);
changeObject(obj);