1 package org.omg.PortableInterceptor; 2 3 4 10 11 abstract public class IORInterceptor_3_0Helper 12 { 13 private static String _id = "IDL:omg.org/PortableInterceptor/IORInterceptor_3_0:1.0"; 14 15 public static void insert (org.omg.CORBA.Any a, org.omg.PortableInterceptor.IORInterceptor_3_0 that) 16 { 17 org.omg.CORBA.portable.OutputStream 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.PortableInterceptor.IORInterceptor_3_0 extract (org.omg.CORBA.Any a) 24 { 25 return read (a.create_input_stream ()); 26 } 27 28 private static org.omg.CORBA.TypeCode __typeCode = null; 29 synchronized public static org.omg.CORBA.TypeCode type () 30 { 31 if (__typeCode == null) 32 { 33 __typeCode = org.omg.CORBA.ORB.init ().create_interface_tc (org.omg.PortableInterceptor.IORInterceptor_3_0Helper.id (), "IORInterceptor_3_0"); 34 } 35 return __typeCode; 36 } 37 38 public static String id () 39 { 40 return _id; 41 } 42 43 public static org.omg.PortableInterceptor.IORInterceptor_3_0 read (org.omg.CORBA.portable.InputStream istream) 44 { 45 throw new org.omg.CORBA.MARSHAL (); 46 } 47 48 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.PortableInterceptor.IORInterceptor_3_0 value) 49 { 50 throw new org.omg.CORBA.MARSHAL (); 51 } 52 53 public static org.omg.PortableInterceptor.IORInterceptor_3_0 narrow (org.omg.CORBA.Object obj) 54 { 55 if (obj == null) 56 return null; 57 else if (obj instanceof org.omg.PortableInterceptor.IORInterceptor_3_0 ) 58 return (org.omg.PortableInterceptor.IORInterceptor_3_0 )obj; 59 else 60 throw new org.omg.CORBA.BAD_PARAM (); 61 } 62 63 public static org.omg.PortableInterceptor.IORInterceptor_3_0 unchecked_narrow (org.omg.CORBA.Object obj) 64 { 65 if (obj == null) 66 return null; 67 else if (obj instanceof org.omg.PortableInterceptor.IORInterceptor_3_0 ) 68 return (org.omg.PortableInterceptor.IORInterceptor_3_0 )obj; 69 else 70 throw new org.omg.CORBA.BAD_PARAM (); 71 } 72 73 } 74 | Popular Tags |