import java.util.*; public class Tuple { private ArrayList attributes; private ArrayList domains; private ArrayList tuple; // METHODS // Constructor; set instance variables public Tuple (ArrayList attr, ArrayList dom) { } // Add String s at the end of the tuple public void addStringComponent(String s) { } // Add Double d at the end of the tuple public void addDoubleComponent(Double d) { } // Add Integer i at the end of the tuple public void addIntegerComponent(Integer i) { } // return String representation of tuple; See output of run for format. public String toString() { } }