An example of remote object reference passing.

* description

	One ->  Two  -> Three

We use three objects in this example. 'One' calls a method
of 'Two' with a remote object reference to 'Three', then 'Two'
calls a method of 'Three' via the remote object reference.


* version

Author: HIRANO Satoshi
Versioin: 1.0

* How to compile and run

c:> horbc Three.java Two.java
c:> horbc -c One.java

c:> horb			(start a HORB server in another window)
c:> java horb.test.objRefSend.One


* Classes

   One.java		This object calls Two
   Two.java		This object calls Three
   Three.java		This object is called last
