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