queryWithVisitor method

void queryWithVisitor(
  1. Envelope searchEnv,
  2. ItemVisitor visitor
)
override

Returns items whose bounds intersect the given envelope.

Implementation

void queryWithVisitor(Envelope searchEnv, ItemVisitor visitor) {
  //Yes this method does something. It specifies that the bounds is an
  //Envelope. super.query takes an Object, not an Envelope. [Jon Aquino 10/24/2003]
  super.queryObjWithVisitor(searchEnv, visitor);
}