KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > PortableActivationIDL > ORBProxyHolder


1 package com.sun.corba.se.PortableActivationIDL;
2
3 /**
4 * com/sun/corba/se/PortableActivationIDL/ORBProxyHolder.java .
5 * Generated by the IDL-to-Java compiler (portable), version "3.2"
6 * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
7 * Saturday, February 9, 2008 2:04:41 AM PST
8 */

9
10
11 /** ORB callback interface, passed to Activator in registerORB method.
12     */

13 public final class ORBProxyHolder implements org.omg.CORBA.portable.Streamable JavaDoc
14 {
15   public com.sun.corba.se.PortableActivationIDL.ORBProxy value = null;
16
17   public ORBProxyHolder ()
18   {
19   }
20
21   public ORBProxyHolder (com.sun.corba.se.PortableActivationIDL.ORBProxy initialValue)
22   {
23     value = initialValue;
24   }
25
26   public void _read (org.omg.CORBA.portable.InputStream JavaDoc i)
27   {
28     value = com.sun.corba.se.PortableActivationIDL.ORBProxyHelper.read (i);
29   }
30
31   public void _write (org.omg.CORBA.portable.OutputStream JavaDoc o)
32   {
33     com.sun.corba.se.PortableActivationIDL.ORBProxyHelper.write (o, value);
34   }
35
36   public org.omg.CORBA.TypeCode JavaDoc _type ()
37   {
38     return com.sun.corba.se.PortableActivationIDL.ORBProxyHelper.type ();
39   }
40
41 }
42
Popular Tags