View Single Post
Join Date: Apr 2004
Posts: 6
Reputation: sykkn is an unknown quantity at this point 
Solved Threads: 1
sykkn sykkn is offline Offline
Newbie Poster

Re: Cannot figure out why I'm getting these Errors

 
0
  #4
Apr 8th, 2004
another thing ... quick paste into eclipse and it suggests that you cast "this" with (ActionListener) and (ItemListener) .... Also I think you may have meant addItemListener on the second food.add* line.

order.addActionListener((ActionListener)this);
food.addItemListener((ItemListener)this);
order.addActionListener((ActionListener)this);
food.addItemListener((ItemListener)this);


//edit ... left off the semicolons myself that time
Reply With Quote