Home | History | Annotate | Download | only in utils
      1 package com.github.javaparser.utils;
      2 
      3 /**
      4  * Simply a pair of objects.
      5  * @param <A> type of object a.
      6  * @param <B> type of object b.
      7  */
      8 public class Pair<A, B> {
      9 	public final A a;
     10 	public final B b;
     11 
     12 	public Pair(A a, B b) {
     13 		this.a = a;
     14 		this.b = b;
     15 	}
     16 }
     17