You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
229 B

  1. package export;
  2. public class Tuple
  3. {
  4. private String a;
  5. private String b;
  6. public Tuple(String a, String b)
  7. {
  8. this.a = a;
  9. this.b = b;
  10. }
  11. public String getA()
  12. {
  13. return a;
  14. }
  15. public String getB()
  16. {
  17. return b;
  18. }
  19. }