How to get Eclipse Console to hyperlink text to source code files?

前端 未结 7 1837
生来不讨喜
生来不讨喜 2020-12-09 10:37

In Code: System.out.println(\"myPackage.MyClass\");

In Eclipse Console: myPackage.MyClass.myMethod

I want to click on the output (myPackage.MyClass.myM

7条回答
  •  佛祖请我去吃肉
    2020-12-09 11:21

    To add to the other answers, you can link to the specific class with this quirky format:

    java.util..(List.java:100)
    java.awt..(List.java:100)

提交回复
热议问题