All Downloads are FREE. Search and download functionalities are using the official Maven repository.

editor.util.Pair Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package editor.util;

public class Pair
{
  A _a;
  B _b;


  public Pair( A a, B b )
  {
    _a = a;
    _b = b;
  }

  public A getFirst()
  {
    return _a;
  }

  public B getSecond()
  {
    return _b;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy