KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gcc > org > omg > GIOP > PrincipalHolder


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

10
11
12 // be available for V1.0 and V1.1
13
public final class PrincipalHolder implements org.omg.CORBA.portable.Streamable JavaDoc
14 {
15   public byte value[] = null;
16
17   public PrincipalHolder ()
18   {
19   }
20
21   public PrincipalHolder (byte[] initialValue)
22   {
23     value = initialValue;
24   }
25
26   public void _read (org.omg.CORBA.portable.InputStream JavaDoc i)
27   {
28     value = gcc.org.omg.GIOP.PrincipalHelper.read (i);
29   }
30
31   public void _write (org.omg.CORBA.portable.OutputStream JavaDoc o)
32   {
33     gcc.org.omg.GIOP.PrincipalHelper.write (o, value);
34   }
35
36   public org.omg.CORBA.TypeCode JavaDoc _type ()
37   {
38     return gcc.org.omg.GIOP.PrincipalHelper.type ();
39   }
40
41 }
42
Popular Tags