Server calls methods of an applet. Example of invitation.

* description

See examples/invitation first.

This is another version of WClock that uses invitation.
In this example, Server calls the serverPaint() method
of Applet every second.

Use -ignoresuper when you compile applets with the horbc compiler, like;

	c:> horbc -ignoresuper Applet.java

it ignores java.applet.Applet when it generates proxy and skeleton
classes.

* version

Author: HIRANO Satoshi
Versioin: 1.0

* How to compile and run

c:> horbc Server.java 
c:> horbc -ignoresuper Applet.java
c:> horbc -c Server_Impl.java 

c:> horb -v             (start a HORB server in another window)
c:> appletviewer Applet.htm   (or use Netscape)


* Classes

   Server.java		interface of Server
   Server_Impl.java     implementation of Server
   Applet.java		client

