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

com.aggrepoint.utils.TwoValues Maven / Gradle / Ivy

There is a newer version: 1.0.11
Show newest version
package com.aggrepoint.utils;

public class TwoValues {
	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