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

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

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