In Code: System.out.println(\"myPackage.MyClass\");
In Eclipse Console: myPackage.MyClass.myMethod
I want to click on the output (myPackage.MyClass.myM
A much easier method is to trick the console into creating a link for you. The format is simple:
System.out.println("(" + new TestBed().getClass().getSimpleName() + ".java:" + 18 + ")");
Obviously you can provide the class type and line number in code as you wish.