Hi David,
Is there anyway to reference a subclass's superclass using the "super" keyword within a static context?
No, because super is a reference to an instantiated object which is non-static. If you call it from a static (class scope) context, which instance of super are you referring to? Even though the member you may be referring to is indeed static, how can you expect the compiler to resolve the reference to super?
Michael Morris
Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Ernst F. Schumacher