I am trying to take a String from a JTextField using getText and apply it to the method
SearchString but i am presented with the error Incompatible Types i cannot see anything wrong with this code however.
ActionListner code:
String whatToSearch,result
JTextField searchfield
method SearchString
EDIT: have changed to Public String, but i am now given a Missing Return Statement error at the line shown above
Incompatible Typesoccur and which are those 2 types. Can you be more explicit on that error? – Andrei Sfat Jun 5 '11 at 9:30void), but you are asigning it to your result-variable. Regarding to your error, result possibly is a String var, and thus you get the error, that you can't assignvoidtojava.land.String– Pit Jun 5 '11 at 9:41voidSearchString(String input) . You want to returnStringin order to be a compatible type. – Andrei Sfat Jun 5 '11 at 9:41