KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.sun.corba.se.PortableActivationIDL;
2
3 /**
4 * com/sun/corba/se/PortableActivationIDL/ServerManagerHolder.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 /** Interface used to combine the Activator and Locator when both are
12     * implemented together in the same process, as is currently the case
13     * for our implementation.
14     */

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