existantial question
if i have a class hierarchy like:
public class TestSuper {
public static class A {
@Override
public String t
You can't, and very deliberately so: it would break encapsulation.
Suppose you had a class which used a method to validate input by some business rules, and then call the superclass method. If the caller could just ignore the override, it would make the class pretty much pointless.
If you find yourself needing to do this, revisit your design.