KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > mof > Reflective > BadPositionHelper


1 package org.omg.mof.Reflective;
2
3
4 /**
5 * org/omg/mof/Reflective/BadPositionHelper.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from Reflective.idl
8 * lundi 17 mars 2003 15 h 00 CET
9 */

10
11 abstract public class BadPositionHelper
12 {
13   private static String JavaDoc _id = "IDL:org/omg/mof/Reflective/BadPosition:1.0";
14
15   public static void insert (org.omg.CORBA.Any JavaDoc a, org.omg.mof.Reflective.BadPosition that)
16   {
17     org.omg.CORBA.portable.OutputStream JavaDoc out = a.create_output_stream ();
18     a.type (type ());
19     write (out, that);
20     a.read_value (out.create_input_stream (), type ());
21   }
22
23   public static org.omg.mof.Reflective.BadPosition extract (org.omg.CORBA.Any JavaDoc a)
24   {
25     return read (a.create_input_stream ());
26   }
27
28   private static org.omg.CORBA.TypeCode JavaDoc __typeCode = null;
29   private static boolean __active = false;
30   synchronized public static org.omg.CORBA.TypeCode JavaDoc type ()
31   {
32     if (__typeCode == null)
33     {
34       synchronized (org.omg.CORBA.TypeCode JavaDoc.class)
35       {
36         if (__typeCode == null)
37         {
38           if (__active)
39           {
40             return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
41           }
42           __active = true;
43           org.omg.CORBA.StructMember JavaDoc[] _members0 = new org.omg.CORBA.StructMember JavaDoc [1];
44           org.omg.CORBA.TypeCode JavaDoc _tcOf_members0 = null;
45           _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ulong);
46           _members0[0] = new org.omg.CORBA.StructMember JavaDoc (
47             "current_size",
48             _tcOf_members0,
49             null);
50           __typeCode = org.omg.CORBA.ORB.init ().create_exception_tc (org.omg.mof.Reflective.BadPositionHelper.id (), "BadPosition", _members0);
51           __active = false;
52         }
53       }
54     }
55     return __typeCode;
56   }
57
58   public static String JavaDoc id ()
59   {
60     return _id;
61   }
62
63   public static org.omg.mof.Reflective.BadPosition read (org.omg.CORBA.portable.InputStream JavaDoc istream)
64   {
65     org.omg.mof.Reflective.BadPosition value = new org.omg.mof.Reflective.BadPosition ();
66     // read and discard the repository ID
67
istream.read_string ();
68     value.current_size = istream.read_ulong ();
69     return value;
70   }
71
72   public static void write (org.omg.CORBA.portable.OutputStream JavaDoc ostream, org.omg.mof.Reflective.BadPosition value)
73   {
74     // write the repository ID
75
ostream.write_string (id ());
76     ostream.write_ulong (value.current_size);
77   }
78
79 }
80
Popular Tags