KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gcc > rmi > iiop > NameServiceHolder


1 package gcc.rmi.iiop;
2
3 /**
4 * gcc/rmi/iiop/NameServiceHolder.java .
5 * Generated by the IDL-to-Java compiler (portable), version "3.1"
6 * from ../idl/gcc-rmi-iiop.idl
7 * Wednesday, December 8, 2004 11:54:46 AM EST
8 */

9
10 public final class NameServiceHolder implements org.omg.CORBA.portable.Streamable
11 {
12   public gcc.rmi.iiop.NameService value = null;
13
14   public NameServiceHolder ()
15   {
16   }
17
18   public NameServiceHolder (gcc.rmi.iiop.NameService initialValue)
19   {
20     value = initialValue;
21   }
22
23   public void _read (org.omg.CORBA.portable.InputStream i)
24   {
25     value = gcc.rmi.iiop.NameServiceHelper.read (i);
26   }
27
28   public void _write (org.omg.CORBA.portable.OutputStream o)
29   {
30     gcc.rmi.iiop.NameServiceHelper.write (o, value);
31   }
32
33   public org.omg.CORBA.TypeCode _type ()
34   {
35     return gcc.rmi.iiop.NameServiceHelper.type ();
36   }
37
38 }
39
Popular Tags