
com.aggrepoint.utils.TwoValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aputils Show documentation
Show all versions of aputils Show documentation
Common utilities used by both Dao and Winlet project
The newest version!
package com.aggrepoint.utils;
import java.io.Serializable;
public class TwoValues implements Serializable {
private static final long serialVersionUID = 1L;
private U one;
private V two;
public TwoValues(U u, V v) {
one = u;
two = v;
}
public U getOne() {
return one;
}
public void setOne(U one) {
this.one = one;
}
public V getTwo() {
return two;
}
public void setTwo(V two) {
this.two = two;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy