1 package org.omg.mof.Reflective; 2 3 4 10 11 abstract public class DesignatorTypeHelper 12 { 13 private static String _id = "IDL:org/omg/mof/Reflective/DesignatorType:1.0"; 14 15 public static void insert (org.omg.CORBA.Any a, org.omg.mof.Reflective.RefObject 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.mof.Reflective.RefObject 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.mof.Reflective.RefObjectHelper.type (); 34 __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.mof.Reflective.DesignatorTypeHelper.id (), "DesignatorType", __typeCode); 35 } 36 return __typeCode; 37 } 38 39 public static String id () 40 { 41 return _id; 42 } 43 44 public static org.omg.mof.Reflective.RefObject read (org.omg.CORBA.portable.InputStream istream) 45 { 46 org.omg.mof.Reflective.RefObject value = null; 47 value = org.omg.mof.Reflective.RefObjectHelper.read (istream); 48 return value; 49 } 50 51 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.mof.Reflective.RefObject value) 52 { 53 org.omg.mof.Reflective.RefObjectHelper.write (ostream, value); 54 } 55 56 } 57 | Popular Tags |