ObjectImporter.java | Class | The object importer enables applets to call a method on a remote
object running on the Webserver (the main class of this
package).
To access the remote
object, the applet first calls lookupObject() and
obtains a proxy object, which is a reference to that object.
The class name of the proxy object is identical to that of
the remote object.
The proxy object provides the same set of methods as the remote object.
If one of the methods is invoked on the proxy object,
the invocation is delegated to the remote object.
From the viewpoint of the applet, therefore, the two objects are
identical. |