As u Know
Java doesnot support multiple inheritance. It support multiple inheritance only thru interfaces.
When u work with
applets u know u have to extend Applet class.
ie. public class myapplet extends Applet{}
In the same program if u want to do threading also it is not possible. So in that case instead of extending Thread we have to implement Runnable interface.
ie. public class myapplet extends Applet implement Runnable{}