Mike Curwen gave an
excellent example.

Here's a graphical representation:
So, if I were writing the Subclass1 code, and I wanted to refer to a variable or method from the Superclass, I would refer to them as super.variable or super.method().
This is exactly what Mike did with the line:
System.out.println("Value in SuperClass: " + super.value); Susan
[This message has been edited by Susan Delph (edited May 22, 2001).]