Is it possible to use as follows in same class
public void actionPerformed (ActionEvent ae)
{
}
and
public void actionPerformed (ActionEvent e)
{
}
actually i want to program the event handling of buttons as well as checkboxGroup.. ..
Please Suggest me something.....
public void actionPerformed (ActionEvent ae)
{
}
and
public void actionPerformed (ActionEvent e)
{
}
actually i want to program the event handling of buttons as well as checkboxGroup.. ..
Please Suggest me something.....
Comment