query method

List query(
  1. Envelope searchEnv
)
override

Returns items whose bounds intersect the given envelope.

Implementation

List query(Envelope searchEnv) {
  //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]
  return super.queryObj(searchEnv);
}