posted 21 years ago
Hi,
I wanted to know the difference between:
pulic void actionPerformed( ActionEvent e)
{
}
and
public boolean action (Event evt, Object arg)
{
return true;
}
All what I know is that the first method is a non-depricated method for 1.2 and the second is the depricated as it gives me warning when I compile it.
Thanks in advance
I need to know some more on this...
Kajol