Example of a use of an interface of server object.

* description

Server is an interface and Server_Impl is an implementation class of
Server. You can generage proxy classes from the interface.

* version

Author: HIRANO Satoshi
Versioin: 1.0

* How to compile and run

c:> horbc Server.java
c:> horbc -c Server_Impl.java Client.java

c:> horb			   (start ORB in another window)
c:> java horb.examples.interfaceCall.Client


* Classes

   Server.java		definition of interface 'server'
   Server_Impl.java  an implementation of interface 'server'
   Client.java		a simple client program

* files generated from server.java by proxy class generator

   server_Proxy.java	proxy class to access server_Impl
			this is an implementation of 'server'
   server_Skeleton.java	adaptor class to access server_Impl
			this is an implementation of 'server'
			
  