public class JournalCollection { // instance variables - replace the example below with your own private ArrayList journal; /** * Constructor for objects of class JournalCollection */ public JournalCollection() { journal = new ArrayList(); } /** * add journal */ public void addJournal(Journal journal) { journal.add(journal); } public ArrayListgetJournalList(String empName) { } }