Possible Duplicate:
Why is super.super.method(); not allowed in Java?
If you have a class that derives from a class that derives from another is there anyway for me to call the super.super method and not the overridden one?
class A{
    public void some(){}
} 
class B extends A{
    public void some(){}
} 
class C extends B{
    public void some(){I want to call A.some();}
} 
 
     
     
    