public final boolean eventListToShowEmpty;
public final boolean taskListToShowEmpty;
public ListsToShowUpdatedEvent(boolean eventListToShowEmpty, boolean taskListToShowEmpty) {
this.eventListToShowEmpty = eventListToShowEmpty;
this.taskListToShowEmpty = taskListToShowEmpty;
}
You may want to follow the boolean variable naming conversion in the coding standard.
/** loads a new xml storage file. If the file does not exist, create a new one and set it as the storage file
* This is achieved by posting LoadNewStorageFileEvent which is handled at the high-level MainApp instance.
*/
public class LoadCommand extends Command {
public static final String COMMAND_WORD = "load";
Main
You may want to follow the boolean variable naming conversion in the coding standard.
The Javadoc format is not correct.
Using of
this
keywords is not consistent.The two branches are almost the same. You may want to reduce the duplications.
Comment out code?
Test
Where is your test collate file? Or you should work more on writing test code.