One Problem my friend,
I modified the controller class to say use JOptionPane instead of System.out.println like so:
{
public static void main(String[] args)
{
ProjectTwoDefinition test = new ProjectTwoDefinition();
JOptionPane.showMessageDialog(null, test);
}
}
And everything works as normal but it causes an extra joptionpane window to show up with what ive input all in one line, is there a way to move the summary window that shows everything i input in that long box to the controller?