Package org.apache.geronimo.corba

Examples of org.apache.geronimo.corba.PlainObject


    }

    public final org.omg.CORBA.Object read_Object() {
        InternalIOR ior = InternalIOR.read(__orb(), this);
        ClientDelegate del = new ClientDelegate(ior);
        ObjectImpl result = new PlainObject();
        result._set_delegate(del);
        return result;
    }
View Full Code Here


  public Object createObject(InternalIOR ior) {
    orb.__checkDestroy();
    if (ior == null)
      return null;
    ClientDelegate delegate = new ClientDelegate(ior);
    PlainObject result = new PlainObject(delegate);
    return result;
  }
View Full Code Here

    // construct delegate
    ClientDelegate delegate = new ClientDelegate(orb, ior);

    // construct a PlainObject
    PlainObject result = new PlainObject(delegate);

    return result;
  }
View Full Code Here

      return null;

    ClientDelegate delegate = new ClientDelegate(orb, poa, oid,
        repository_id, orb.getPolicies());

    PlainObject result = new PlainObject(delegate);

    return result;
  }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.corba.PlainObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.