This guide walks through how to make progress on the homework. The Homework Testing guide goes into more detail on how to test the homework code locally and remotely.
Table of Contents
To figure out what you need to do for a homework assignment, you need to look at the following:
TODO
comments in the code indicating where you need to add code. The /** ... */
Javadoc comments in the code indicate what functionality you need to implement. It can be helpful to view these in the “Javadoc” viewer in Eclipse.When you are addressing the TODO
comments in the code, you may:
return
statement in a method with a TODO
comment as needed. (You may not change the return type in the method declaration, however.)main
method if you do not need it for debugging.TODO
comments when you are done. This removes them from the “Tasks” view in Eclipse. If you want to keep the comment around, you can change the text TODO
to DONE
instead.However, be careful to avoid making the following modifications: