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

com.devonfw.cobigen.api.util.Tuple Maven / Gradle / Ivy

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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy