java class method stubs with /* compiled code */ -
i received third party authentication library use in clients application. didn't receive documentation , trying dig through source , see how works. i'm new java when click go to -> declaration on methods in intellij sends me .class
file , see bunch of stubbed methods /* compiled code */
in methods.
i'm sure common in java don't know search learn going on. clarification great.
this typically means don't have source code, , intellij displays /* compiled code */
placeholder source code don't have.
to see what's going on, best receive source code of third party library.
you should of course documentation, reading source code , guessing how use library isn't best way learn.
the second best option install decompiler plugin intellij, intellijad, automatically decompile java class file (note license third party library may disallow that). never 100% solution, in cases it's better nothing.
Comments
Post a Comment