View Single Post
Old 10-26-2005, 05:34 PM   #2 (permalink)
office politics
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,425

office politics will become famous soon enough

Default

http://www.daniweb.com/techtalkforums/post58331.html

To implement an interface (in this case ActionListener or ItemListener), you must write all the functions that the interface provides. One such function you're missing is actionPerformed(ActionEvent). If you put this function into your ChatClientApplication class, it will stop complaining.

Put this in your class:

Code:

public void actionPerformed(java.awt.event.ActionEvent e)
{
}

Hope this helps!


Ed
office politics is offline