FileDocCategorySizeDatePackage
CORBASolverHelper.javaAPI DocExample2153Tue Jun 17 23:39:32 BST 1997DCJ.examples

CORBASolverHelper

public final class CORBASolverHelper extends Object

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

 
Methods Summary
public static DCJ.examples.CORBASolver__read(org.omg.CORBA.portable.InputStream in)

        return DCJ.examples.CORBASolverHelper.narrow(in.read_Object());
    
public static void__write(org.omg.CORBA.portable.OutputStream out, DCJ.examples.CORBASolver that)

        out.write_Object(that);
    
public static boolean_is_a(org.omg.CORBA.Object that)

        if (that == null)
           return true;
	else 
           return that._is_a(id());
   
public static DCJ.examples.CORBASolverextract(org.omg.CORBA.Any a)

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

       return "IDL:DCJ/examples/CORBASolver:1.0";
   
public static voidinsert(org.omg.CORBA.Any a, DCJ.examples.CORBASolver that)

     org.omg.CORBA.portable.OutputStream out = a.create_output_stream();
     a.type(type());
     __write(out, that);
     a.read_value(out.get_input_stream(), type());
   
public static DCJ.examples.CORBASolvernarrow(org.omg.CORBA.Object that)

        if (that == null)
            return null;
        if (that instanceof DCJ.examples.CORBASolver)
            return (DCJ.examples.CORBASolver) that;
	if (!_is_a(that)) {
	    throw new org.omg.CORBA.BAD_PARAM();
	}
        org.omg.CORBA.portable.Delegate dup = ((org.omg.CORBA.portable.ObjectImpl)that)._get_delegate();
        DCJ.examples.CORBASolver result = new DCJ.examples._CORBASolverStub(dup);
        return result;
   
public static synchronized org.omg.CORBA.TypeCodetype()

          if (_tc == null)
             _tc = org.omg.CORBA.ORB.init().create_interface_tc(id(), "CORBASolver");
      return _tc;