java - Finding implementations of an interface in Eclipse -


i'm looking @ following method.

public void setrecordvalidator(validator recordvalidator) {     this.recordvalidator = recordvalidator; } 

in case class validator interface. i'm not sure kind of object pass on method since i'm not sure classes implement validator.

the question how can view classes implement validator in eclipse?

there's few ways information, here of them:

right click on name of interface , select open type hierarchy (the shortcut f4 default).

alternatively, right click , choose references > hierarchy instead.

ctrl+t give javadoc-style popup type hierarchy inside.

there plenty of other ways this, pick poison really.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -