1 package org.omg.CosNaming.NamingContextPackage; 2 3 4 10 11 12 15 abstract public class NotFoundReasonHelper 16 { 17 private static String _id = "IDL:omg.org/CosNaming/NamingContext/NotFoundReason:1.0"; 18 19 public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.NamingContextPackage.NotFoundReason that) 20 { 21 org.omg.CORBA.portable.OutputStream out = a.create_output_stream (); 22 a.type (type ()); 23 write (out, that); 24 a.read_value (out.create_input_stream (), type ()); 25 } 26 27 public static org.omg.CosNaming.NamingContextPackage.NotFoundReason extract (org.omg.CORBA.Any a) 28 { 29 return read (a.create_input_stream ()); 30 } 31 32 private static org.omg.CORBA.TypeCode __typeCode = null; 33 synchronized public static org.omg.CORBA.TypeCode type () 34 { 35 if (__typeCode == null) 36 { 37 __typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (org.omg.CosNaming.NamingContextPackage.NotFoundReasonHelper.id (), "NotFoundReason", new String [] { "missing_node", "not_context", "not_object"} ); 38 } 39 return __typeCode; 40 } 41 42 public static String id () 43 { 44 return _id; 45 } 46 47 public static org.omg.CosNaming.NamingContextPackage.NotFoundReason read (org.omg.CORBA.portable.InputStream istream) 48 { 49 return org.omg.CosNaming.NamingContextPackage.NotFoundReason.from_int (istream.read_long ()); 50 } 51 52 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.NamingContextPackage.NotFoundReason value) 53 { 54 ostream.write_long (value.value ()); 55 } 56 57 } 58 | Popular Tags |