source: branches/localSpectral/src/clustering/MyPair.java @ 37

Last change on this file since 37 was 37, checked in by toshi, 14 years ago
File size: 298 bytes
Line 
1
2package clustering;
3
4public class MyPair<V,E> {
5
6    V first;
7    E second;
8
9    public MyPair(V first, E second) {
10        this.first = first;
11        this.second = second;
12    }
13
14    public V getFirst() {
15        return first;
16    }
17
18    public E getSecond() {
19        return second;
20    }
21
22
23
24}
Note: See TracBrowser for help on using the repository browser.