Forum: Java May 26th, 2004 |
| Replies: 5 Views: 14,579 you need to change your climaticData method to return String[] instead of void. Add return(climateDataOut); at the end of the method and then change your calling class to catch the String[]. |
Forum: Java Apr 8th, 2004 |
| Replies: 12 Views: 5,040 First thing I see is that you missed semicolons on the following lines:
order.addActionListener(this)
food.addActionListener(this) |