actionlistener
hi all
i want to call a method from SuperMethods.java which is called
"trysScored"
public String trysScored(Super14[] myTeam)
and display its output in jTextArea1 which i have also created in a GUI
i have created a aswell and here is the code. i know what is in there isnt right but it was just some of the things i was trying to do to get it to work but pretty much dont have a clue....
any help would be great!
privatevoid jButton1ActionPerformed(java.awt.event.ActionEvent evt){
SuperMethods worker =new SuperMethods();
String input = jTextArea1.getText().trim();
//if input is integer or double then use Integer.parseInt()
jTextArea1.setText(input);
}

