public class A extends Applet implements MouseListener,MouseMotionListener{
public void init(){
addMouseListener(this);
addMouseMotionListener(this);
}
}
please tell me that what "this" means here!! actually, what argument addMouselistener() function want ? i have seen API, in that it is given "MouseListener e", how it is true here ?? tell me please!! here "this" refering to which object? applet's or interfaces? and how ??