Are you just trying to print the contents of the ArrayList? You can use a for loop to do so:


for ( int i = 0; i < myList.size(); i++ ){
System.out.println(myList.get(i).author + " "...