FileDocCategorySizeDatePackage
OTSResourceHelper.javaAPI DocGlassfish v2 API4165Fri May 04 22:36:34 BST 2007com.sun.jts.jtsxa

OTSResourceHelper

public abstract class OTSResourceHelper extends Object
com/sun/jts/jtsxa/OTSResourceHelper.java . Generated by the IDL-to-Java compiler (portable), version "3.1" from com/sun/jts/jtsxa.idl Tuesday, February 5, 2002 12:57:25 PM PST

Fields Summary
private static String
_id
private static org.omg.CORBA.TypeCode
__typeCode
Constructors Summary
Methods Summary
public static com.sun.jts.jtsxa.OTSResourceextract(org.omg.CORBA.Any a)

    return read (a.create_input_stream ());
  
public static java.lang.Stringid()

    return _id;
  
public static voidinsert(org.omg.CORBA.Any a, com.sun.jts.jtsxa.OTSResource 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.jtsxa.OTSResourcenarrow(org.omg.CORBA.Object obj)

    if (obj == null)
      return null;
    else if (obj instanceof com.sun.jts.jtsxa.OTSResource)
      return (com.sun.jts.jtsxa.OTSResource)obj;
    else if (!obj._is_a (id ()))
      throw new org.omg.CORBA.BAD_PARAM ();
    else
    {
      org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
      com.sun.jts.jtsxa._OTSResourceStub stub = new com.sun.jts.jtsxa._OTSResourceStub ();
      stub._set_delegate(delegate);
      return stub;
    }
  
public static com.sun.jts.jtsxa.OTSResourceread(org.omg.CORBA.portable.InputStream istream)

    return narrow (istream.read_Object (_OTSResourceStub.class));
  
public static synchronized org.omg.CORBA.TypeCodetype()

       
  
    if (__typeCode == null)
    {
      __typeCode = org.omg.CORBA.ORB.init ().create_interface_tc (com.sun.jts.jtsxa.OTSResourceHelper.id (), "OTSResource");
    }
    return __typeCode;
  
public static voidwrite(org.omg.CORBA.portable.OutputStream ostream, com.sun.jts.jtsxa.OTSResource value)

    ostream.write_Object ((org.omg.CORBA.Object) value);