Previous | Next | Trail Map | Writing Applets | Finishing an Applet


The Perfectly Finished Applet

The previous page lists some of the ways you can avoid making your applet's users want to throttle you. This page tells you about some other ways that you can make dealing with your applet as pleasant as possible.
Make your applet as flexible as possible.
You can often define parameters that let your applet be used in a variety of situations without any rewriting. See Defining and Using Applet Parameters(in the Writing Applets trail) for more information.
Implement the getParameterInfo method.
Implementing this method now might make your applet easier to customize in the future. Currently, no browsers use this method. Soon, however, we expect browsers to use this method to help generate a GUI that allows the user to interactively set parameter values. See Giving Information about Parameters(in the Writing Applets trail) for information on implementing getParameterInfo.
Implement the getAppletInfo method.
This method returns a short, informative string describing an applet. Although no browsers currently use this method, we expect them to in the future. Here's an example of implementing getAppletInfo:
public String getAppletInfo() {
    return "GetApplets by Kathy Walrath";
}


Previous | Next | Trail Map | Writing Applets | Finishing an Applet