ResourceStatusHelperpublic abstract class ResourceStatusHelper extends Object com/sun/jts/otsidl/ResourceStatusHelper.java .
Generated by the IDL-to-Java compiler (portable), version "3.1"
from com/sun/jts/ots.idl
Tuesday, February 5, 2002 12:57:23 PM PST |
Fields Summary |
---|
private static String | _id | private static org.omg.CORBA.TypeCode | __typeCode |
Methods Summary |
---|
public static com.sun.jts.otsidl.ResourceStatus | extract(org.omg.CORBA.Any a)
return read (a.create_input_stream ());
| public static java.lang.String | id()
return _id;
| public static void | insert(org.omg.CORBA.Any a, com.sun.jts.otsidl.ResourceStatus that)
org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
a.type (type ());
write (out, that);
a.read_value (out.create_input_stream (), type ());
| public static com.sun.jts.otsidl.ResourceStatus | read(org.omg.CORBA.portable.InputStream istream)
return com.sun.jts.otsidl.ResourceStatus.from_int (istream.read_long ());
| public static synchronized org.omg.CORBA.TypeCode | type()
if (__typeCode == null)
{
__typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (com.sun.jts.otsidl.ResourceStatusHelper.id (), "ResourceStatus", new String[] { "None", "Registered", "Completing", "Completed", "Heuristic"} );
}
return __typeCode;
| public static void | write(org.omg.CORBA.portable.OutputStream ostream, com.sun.jts.otsidl.ResourceStatus value)
ostream.write_long (value.value ());
|
|