More view JavaDoc

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@63 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-05-02 04:19:39 +02:00
parent e39dc98249
commit 91b921248f
7 changed files with 35 additions and 3 deletions

View file

@ -2,20 +2,34 @@ package jrummikub.util;
/**
* A pair of objects
* @param <T1> the first type of the pair
* @param <T2> the second type of the pair
*/
public class Pair<T1, T2> {
final T1 first;
final T2 second;
private final T1 first;
private final T2 second;
/**
* Create a new pair
*
* @param first the first value
* @param second the second value
*/
public Pair(T1 first, T2 second) {
this.first = first;
this.second = second;
}
/**
* @return the first value
*/
public T1 getFirst() {
return first;
}
/**
* @return the first value
*/
public T2 getSecond() {
return second;
}