f.addMouseMotionListener(new MouseAdapter() {
public void mouseDragged(MouseEvent e)
{
String s="Mouse dragging :X = "+e.getX()+" Y= "+e.getY();
tf.setText(s);
}
});
i read that we cannot instantiate objects for Abstract classes...but here we are creating
new MouseAdapter() ..can someone explain how is it done with these anonymous classes..thank u.