java - Library does not have JAVADOC code complete assistance -


i wrote own android library. test it, wrote tester application, added jar , added build path (in eclipse).

eclipse's auto completion shows (public) api methods (which good) following missing:

  • the javadoc description of methods.
  • the method parameter names

    mylibrary.myapimethod(string arg0, string arg1) 

    instead of

    mylibrary.myapimethod(string param, string anotherparam) 

the code built using ant , obfuscated using proguard.

how make sure code-completion of library's parameter names , documentation available users (e.g. tester app)?

to keep method parametres names include -keepparameternames in proguard rules file (proguard-rules.pro)


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -