is it possible to override the methods(non-final) of a final class?
To override a non-final method of final class first u should hava a class that extends the super class.
But here in ur case u can't extend that class. b'coz final class cant be extended.
so u cant override a nonfinal method of a final class.