Example Structure Charts (Object Models or Class Diagrams)
for Lab Documentation

The following are some example structure charts to give you an idea of how to show how your classes inter-relate. Each lab must be accompanied by such a structure chart. Note that some of these are not complete in that they only specify the name of the class; they do not provide the variables and methods. Yours should be complete...each class should show its name, variables and methods (with full signature: parameters passed and value returned):
 
              Figure
              Variables
length:   int
width:    int
                   Methods
reshape():   void
move():   void
move(int, int):   void

Which classes do you need to show? Every class that you use in your program should be shown:

More examples