
com.aggrepoint.utils.ThreeValues 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;
public class ThreeValues extends TwoValues {
private static final long serialVersionUID = 1L;
private K three;
public ThreeValues(U u, V v, K k) {
super(u, v);
three = k;
}
public K getThree() {
return three;
}
public void setThree(K three) {
this.three = three;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy