160161162163164165166167168
public List query(Envelope searchEnv) { /** * the items that are matched are the items in quads which overlap the * search envelope */ ArrayListVisitor visitor = new ArrayListVisitor(); query(searchEnv, visitor); return visitor.getItems(); }