All Examples  This Package

Class examples.rmi.hello.HelloApplet

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----java.applet.Applet
                                   |
                                   +----examples.rmi.hello.HelloApplet

public class HelloApplet
extends Applet
This simple example illustrates how to use WebLogic RMI from an applet. The applet remotely invokes a remote class, HelloImpl, that implements a remote interface, Hello. Call this applet from the HTML file included in this directory.

Author:
Copyright (c) 1997-2000 by BEA Systems, Inc. All Rights Reserved.

Constructor Index

 o HelloApplet()

Method Index

 o init()
Initializes the applet.
 o paint(Graphics)
Simple paint for display.

Constructors

 o HelloApplet
 public HelloApplet()

Methods

 o init
 public void init()
Initializes the applet.

Overrides:
init in class Applet
 o paint
 public void paint(Graphics g)
Simple paint for display.

Overrides:
paint in class Container

All Examples  This Package