First of all, let's assume that by "lint" you mean "init."
There are two methods called at the beginning of an applet's lifetime:
Applet.init() - Called to tell the applet that it has been loaded into the system. You should use this method to initialize any resources used by the applet.
Applet.start() - Called to tell the applet that it should start running.
start() is always called after init()
Chat with our AI personalities