Horus Doc || Java GUI Reference || Doxygen's quick Index  

InProcImageServer Class Reference

An ImageServer that runs in the same process as the Java GUI. More...

Inheritance diagram for InProcImageServer::

ImageServer List of all members.

Public Methods

org.omg.CORBA.Object getInitialObject (String name) throws org.omg.CORBA.ORBPackage.InvalidName
HxCorba.Constructor constructor ()

Detailed Description

An ImageServer that runs in the same process as the Java GUI.


Member Function Documentation

org.omg.CORBA.Object InProcImageServer::getInitialObject String    name [inline, virtual]
 

Reimplemented from ImageServer.

00019 {
00020     String ref = getInitialObjectReference(name);
00021     if(ref == null) throw new org.omg.CORBA.ORBPackage.InvalidName();
00022 
00023     return CorbaMediator.instance().string_to_object(ref);
00024 }

HxCorba.Constructor InProcImageServer::constructor   [inline, virtual]
 

Reimplemented from ImageServer.

00027 {
00028     if(_constructor == null) {
00029         String ref = getInitialObjectReference("Constructor");
00030         if(ref != null) {
00031             org.omg.CORBA.Object obj = CorbaMediator.instance().string_to_object(ref);
00032             _constructor = HxCorba.ConstructorHelper.narrow(obj);
00033         }
00034     }
00035 
00036     return _constructor;
00037 }


The documentation for this class was generated from the following file:
Generated on Tue Feb 3 14:19:47 2004 for JavaReference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001