KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mark > AddDataHolder


1 package mark;
2
3 /**
4 * mark/AddDataHolder.java .
5 * Generated by the IDL-to-Java compiler (portable), version "3.1"
6 * from W:/Geronimo/corba_container/tests/corba_idl/idl/Add.idl
7 * Monday, December 20, 2004 4:06:00 PM EST
8 */

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