FileDocCategorySizeDatePackage
ThisOrThatServerHelper.javaAPI DocExample1850Wed Apr 05 11:25:42 BST 2000None

ThisOrThatServerHelper

public class ThisOrThatServerHelper extends Object

Fields Summary
private static org.omg.CORBA.TypeCode
_tc
Constructors Summary
private ThisOrThatServerHelper()

 
Methods Summary
public static ThisOrThatServerextract(org.omg.CORBA.Any a)

     org.omg.CORBA.portable.InputStream in = a.create_input_stream();
     return read(in);
   
public static java.lang.Stringid()

       return "IDL:ThisOrThatServer:1.0";
   
public static voidinsert(org.omg.CORBA.Any a, ThisOrThatServer that)

     org.omg.CORBA.portable.OutputStream out = a.create_output_stream();
     write(out, that);
     a.read_value(out.create_input_stream(), type());
   
public static ThisOrThatServernarrow(org.omg.CORBA.Object that)

        if (that == null)
            return null;
        if (that instanceof ThisOrThatServer)
            return (ThisOrThatServer) that;
	if (!that._is_a(id())) {
	    throw new org.omg.CORBA.BAD_PARAM();
	}
        org.omg.CORBA.portable.Delegate dup = ((org.omg.CORBA.portable.ObjectImpl)that)._get_delegate();
        ThisOrThatServer result = new _ThisOrThatServerStub(dup);
        return result;
   
public static ThisOrThatServerread(org.omg.CORBA.portable.InputStream in)

        return ThisOrThatServerHelper.narrow(in.read_Object());
    
public static synchronized org.omg.CORBA.TypeCodetype()

          if (_tc == null)
             _tc = org.omg.CORBA.ORB.init().create_interface_tc(id(), "ThisOrThatServer");
      return _tc;
   
public static voidwrite(org.omg.CORBA.portable.OutputStream out, ThisOrThatServer that)

        out.write_Object(that);