Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
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 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 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"; }
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.