com.github.lgooddatepicker.zinternaltools.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of LGoodDatePicker Show documentation
Show all versions of LGoodDatePicker Show documentation
Java 8 Swing Date Picker. Easy to use, good looking, nice features, and
localized. Uses the JSR-310 standard.
package com.github.lgooddatepicker.zinternaltools;
/**
* Pair, This class allows storing and editing of pairs of data. Since this class uses generics, the
* data may be any java class type.
*/
public class Pair {
public A first;
public B second;
public Pair(A first, B second) {
this.first = first;
this.second = second;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy