Lines Matching defs:org

25 package com.sun.org.omg.CORBA;
29 * com/sun/org/omg/CORBA/IDLTypeHelper.java
39 private static String _id = "IDL:omg.org/CORBA/IDLType:1.0";
46 //public static void insert (org.omg.CORBA.Any a, com.sun.org.omg.CORBA.IDLType that)
47 public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.IDLType that)
49 org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
56 //public static com.sun.org.omg.CORBA.IDLType extract (org.omg.CORBA.Any a)
57 public static org.omg.CORBA.IDLType extract (org.omg.CORBA.Any a)
62 private static org.omg.CORBA.TypeCode __typeCode = null;
63 synchronized public static org.omg.CORBA.TypeCode type ()
67 __typeCode = org.omg.CORBA.ORB.init ().create_interface_tc (com.sun.org.omg.CORBA.IDLTypeHelper.id (), "IDLType");
78 //public static com.sun.org.omg.CORBA.IDLType read (org.omg.CORBA.portable.InputStream istream)
79 public static org.omg.CORBA.IDLType read (org.omg.CORBA.portable.InputStream istream)
85 //public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.IDLType value)
86 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.IDLType value)
88 ostream.write_Object ((org.omg.CORBA.Object) value);
92 //public static com.sun.org.omg.CORBA.IDLType narrow (org.omg.CORBA.Object obj)
93 public static org.omg.CORBA.IDLType narrow (org.omg.CORBA.Object obj)
98 //else if (obj instanceof com.sun.org.omg.CORBA.IDLType)
99 else if (obj instanceof org.omg.CORBA.IDLType)
101 //return (com.sun.org.omg.CORBA.IDLType)obj;
102 return (org.omg.CORBA.IDLType)obj;
104 throw new org.omg.CORBA.BAD_PARAM ();
107 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
108 return new com.sun.org.omg.CORBA._IDLTypeStub (delegate);