366367368369370371372373374
public ObjectId get (long id) throws InvalidObjectException { ObjectId oid = (ObjectId) _idTable.get (new Long (id)); if (oid == null) throw new InvalidObjectException (id); return oid; }
656667686970717273
*/ public InstanceOnlyFilter (ObjectId oid) throws InvalidObjectException { if (oid != null && oid.getReference().get () == null) throw new InvalidObjectException (oid.getId ()); _instance = oid; }
9293949596979899100
public Object getObject () throws InvalidObjectException { Object obj = _reference.get (); if (obj == null) throw new InvalidObjectException (_id); return obj; }
193194195196197198199200
public ObjectId get(long id) throws InvalidObjectException { ObjectId oid = (ObjectId) idTable.get(new Long(id)); if (oid == null) throw new InvalidObjectException(id); return oid; }