hi,
interfaces are definitions of some methods.
when a class has implemented this interface it is shure that
methods in the class are present.So other class can use the class
as the interfacetype (not knowing the real type of class)
With reflection api you can check if a class implements interface xyz.
implementaion details of the method you not know.(empty methods of course possible)
bye