Details | Last modification | View Log | RSS feed
// Interface for a generic record for the BSTree or PRQuadTree
public interface Record {
public int getX();
public int getY();
}