I have one interface say 'I' with say 10 methods. I want to use only 5 methods from it in one of my class 'A', some other class 'B' may use rest of the methods or may be all of them. But for class 'A' I want only 5 methods. How can I achieve that ? Coz if I implement interface 'I' in class 'A' I'll have to implement all the 10 methods.
Thanx in adavance
Thanx in adavance