What does @link mean in java/Android documentation?

Viewed 13400

What does this mean:

{@link KeyEvent#KEYCODE_ENTER}

I have seen it a couple times and I'm not quite sure what it represents. I am writing a testing program using Robotium, JUnit, and Android. If anyone could offer some clarification on the subject, more specificly, the {@link} part, that would be great!

Thank you in advance.

4 Answers

This is a link to another class. You should be able to click this link in IDE e.g. Intellij IDEA and Eclipse. Very helpful to link other classes in comments

Related