| Package | Description |
|---|---|
| java.applet |
Provides the classes necessary to create an applet and the classes an applet uses to communicate with its applet context.
|
| java.beans |
Contains classes related to developing
beans -- components based on the JavaBeans™ architecture.
|
| javax.swing |
Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.
|
| org.omg.CORBA |
Provides the mapping of the OMG CORBA APIs to the Java
TM programming language, including the class
ORB, which is implemented so that a programmer can use it as a fully-functional Object Request Broker (ORB).
|
| Modifier and Type | Method and Description |
|---|---|
Applet |
AppletContext.getApplet(String
Finds and returns the applet in the document represented by this applet context with the given name.
|
| Modifier and Type | Method and Description |
|---|---|
Enumeration |
AppletContext.getApplets()
Finds all the applets in the document represented by this applet context.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AppletInitializer.activate(Applet
Activate, and/or mark Applet active.
|
void |
AppletInitializer.initialize(Applet
If passed to the appropriate variant of java.beans.Beans.instantiate this method will be called in order to associate the newly instantiated Applet (JavaBean) with its AppletContext, AppletStub, and Container.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JApplet
An extended version of
java.applet.Applet that adds support for the JFC/Swing component architecture.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RepaintManager.addDirtyRegion(Applet
Adds
applet to the list of
Components that need to be repainted.
|
| Modifier and Type | Method and Description |
|---|---|
static ORB |
ORB.init(Applet
Creates a new
ORB instance for an applet.
|
protected abstract void |
ORB.set_parameters(Applet
Allows the ORB implementation to be initialized with the given applet and parameters.
|