1 7 package org.omg.CORBA; 8 9 18 19 abstract public class WrongTransactionHelper 20 { 21 private static String _id = "IDL:omg.org/CORBA/WrongTransaction:1.0"; 22 23 public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.WrongTransaction that) 24 { 25 org.omg.CORBA.portable.OutputStream out = a.create_output_stream (); 26 a.type (type ()); 27 write (out, that); 28 a.read_value (out.create_input_stream (), type ()); 29 } 30 31 public static org.omg.CORBA.WrongTransaction extract (org.omg.CORBA.Any a) 32 { 33 return read (a.create_input_stream ()); 34 } 35 36 private static org.omg.CORBA.TypeCode __typeCode = null; 37 private static boolean __active = false; 38 synchronized public static org.omg.CORBA.TypeCode type () 39 { 40 if (__typeCode == null) 41 { 42 synchronized (org.omg.CORBA.TypeCode .class) 43 { 44 if (__typeCode == null) 45 { 46 if (__active) 47 { 48 return org.omg.CORBA.ORB.init().create_recursive_tc ( _id ); 49 } 50 __active = true; 51 org.omg.CORBA.StructMember [] _members0 = new org.omg.CORBA.StructMember [0]; 52 org.omg.CORBA.TypeCode _tcOf_members0 = null; 53 __typeCode = org.omg.CORBA.ORB.init ().create_exception_tc (org.omg.CORBA.WrongTransactionHelper.id (), "WrongTransaction", _members0); 54 __active = false; 55 } 56 } 57 } 58 return __typeCode; 59 } 60 61 public static String id () 62 { 63 return _id; 64 } 65 66 public static org.omg.CORBA.WrongTransaction read (org.omg.CORBA.portable.InputStream istream) 67 { 68 org.omg.CORBA.WrongTransaction value = new org.omg.CORBA.WrongTransaction (); 69 istream.read_string (); 71 return value; 72 } 73 74 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.WrongTransaction value) 75 { 76 ostream.write_string (id ()); 78 } 79 80 } 81 | Popular Tags |