treebolic.generator
Class Pair<T1,T2>

java.lang.Object
  extended by treebolic.generator.Pair<T1,T2>
Type Parameters:
T1 - type of first member of the pair
T2 - type of second member of the pair

public class Pair<T1,T2>
extends java.lang.Object

Pair

Author:
Bernard Bou

Field Summary
 T1 theFirst
          First member of the pair
 T2 theSecond
          Second member of the pair
 
Constructor Summary
Pair(T1 thisFirst, T2 thisSecond)
          Constructor
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

theFirst

public T1 theFirst
First member of the pair


theSecond

public T2 theSecond
Second member of the pair

Constructor Detail

Pair

public Pair(T1 thisFirst,
            T2 thisSecond)
Constructor

Parameters:
thisFirst - first member of the pair
thisSecond - second member of the pair