This is an example of inheritance in remote method call and object passing.

* description

It demonstrates method overriding and field shadowing. Read programs
before running and predict the results.
See the inheritance section of the users guide for explanation.

* version

Author: HIRANO Satoshi
Versioin: 1.0

* How to compile and run

c:> horbc SuperClass.java SubClass.java Server.java
c:> horbc -c Client1.java Client2.java Client3.java Client4.java

c:> horb -v              (in another window)

c:> java horb.examples.Client1
c:> java horb.examples.Client2
c:> java horb.examples.Client3
c:> java horb.examples.Client4


* Classes

   SuperClass.java      superclass
   SubClass.java        subclass
   Server.java		server
   Client.java		client

