adding a test case
[IRC.git] / Robust / src / Benchmarks / oooJava / voronoi / EdgePair.java
1 /**
2  * A class that represents an edge pair
3  **/
4 public class EdgePair {
5   Edge left;
6   Edge right;
7
8   public EdgePair(Edge l, Edge r) {
9     left = l;
10     right = r;
11   }
12
13   public Edge getLeft() {
14     return left;
15   }
16
17   public Edge getRight() {
18     return right;
19   }
20
21 }