261262263264265266267268269
} 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; }
3334353637383940
public Object createObject(InternalIOR ior) { orb.__checkDestroy(); if (ior == null) return null; ClientDelegate delegate = new ClientDelegate(ior); PlainObject result = new PlainObject(delegate); return result; }
505152535455565758
// construct delegate ClientDelegate delegate = new ClientDelegate(orb, ior); // construct a PlainObject PlainObject result = new PlainObject(delegate); return result; }
656667686970717273
return null; ClientDelegate delegate = new ClientDelegate(orb, poa, oid, repository_id, orb.getPolicies()); PlainObject result = new PlainObject(delegate); return result; }