Rev 96 | Blame | Compare with Previous | 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(); }
// Interface for a generic record for the BSTree or PRQuadTree
public interface Record {
public int getX();
public int getY();
}