com.devonfw.cobigen.api.util.Tuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-api Show documentation
Show all versions of core-api Show documentation
A Code-based incremental Generator
The newest version!
package com.devonfw.cobigen.api.util;
/**
* Simple tuple implementation
*
* @param First type of the tuple value
* @param Second type of the tuple value
*/
public class Tuple {
private A a;
private B b;
/**
* @param a
* @param b
*/
public Tuple(A a, B b) {
super();
this.a = a;
this.b = b;
}
public A getA() {
return this.a;
}
public void setA(A a) {
this.a = a;
}
public B getB() {
return this.b;
}
public void setB(B b) {
this.b = b;
}
}