Big Java & Java Concepts example project "debugger"

You can use this project as follows:

 - set a breakpoint in the editor window of the main method of WordTester 
 after the lines where input is received.
 - step through the lines of code and watch the change in value of 
 instance variables.
 - create Word objects and set some breakpoints, and step through the
 Constructor and countSyllables methods. 
 

 
This project illustrates concepts covered in Big Java & Java Concepts, Chapter 10 
"Testing and Debugging".
 
 - to become familiar with the debugger 
 - to learn strategies for effective debugging