I am trying to access a toString method from another class in order to print the elements of the array.
info += "Purchases:\n";
for(int index = 0; index < purchases.size(); index++){
info += "[" + (index + 1) + "] ";
info += purchases.get(index).toString();
info += "\n";
}
I would like the code to access the toString in the Purchases class to print out
public String toString(){
String info;
DecimalFormat formatter = new DecimalFormat("$#0.00");
info= (date.get(Calendar.MONTH) +1) + "/" + date.get(Calendar.DAY_OF_MONTH) + "/" + date.get(Calendar.YEAR);
info += "\t" + vendor + "\t\t";
info += (formatter.format(amount));
return info;
}
How can I do this?