1 7 package org.omg.CORBA; 8 9 10 19 20 abstract public class IDLTypeHelper 21 { 22 private static String _id = "IDL:omg.org/CORBA/IDLType:1.0"; 23 24 public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.IDLType that) 25 { 26 org.omg.CORBA.portable.OutputStream out = a.create_output_stream (); 27 a.type (type ()); 28 write (out, that); 29 a.read_value (out.create_input_stream (), type ()); 30 } 31 32 public static org.omg.CORBA.IDLType extract (org.omg.CORBA.Any a) 33 { 34 return read (a.create_input_stream ()); 35 } 36 37 private static org.omg.CORBA.TypeCode __typeCode = null; 38 synchronized public static org.omg.CORBA.TypeCode type () 39 { 40 if (__typeCode == null) 41 { 42 __typeCode = org.omg.CORBA.ORB.init ().create_interface_tc (org.omg.CORBA.IDLTypeHelper.id (), "IDLType"); 43 } 44 return __typeCode; 45 } 46 47 public static String id () 48 { 49 return _id; 50 } 51 52 public static org.omg.CORBA.IDLType read (org.omg.CORBA.portable.InputStream istream) 53 { 54 return narrow (istream.read_Object (_IDLTypeStub .class)); 55 } 56 57 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.IDLType value) 58 { 59 ostream.write_Object ((org.omg.CORBA.Object ) value); 60 } 61 62 public static org.omg.CORBA.IDLType narrow (org.omg.CORBA.Object obj) 63 { 64 if (obj == null) 65 return null; 66 else if (obj instanceof org.omg.CORBA.IDLType ) 67 return (org.omg.CORBA.IDLType )obj; 68 else if (!obj._is_a (id ())) 69 throw new org.omg.CORBA.BAD_PARAM (); 70 else 71 { 72 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl )obj)._get_delegate (); 73 return new org.omg.CORBA._IDLTypeStub (delegate); 74 } 75 } 76 77 } 78 | Popular Tags |