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.

22 lines
246 B

  1. package export;
  2. public class Triplet extends Tuple
  3. {
  4. private String c;
  5. public Triplet(String a, String b, String c)
  6. {
  7. super(a, b);
  8. this.c = c;
  9. }
  10. public String getC()
  11. {
  12. return c;
  13. }
  14. public void setC(String c)
  15. {
  16. this.c=c;
  17. }
  18. }