Java method parameter names from a JAR file in Eclipse

I created a Java library with an ant file to create it in a JAR. When I use this JAR file from another Java project, the method parameter names are displayed in the same way as in the Eclipse hint / autocomplete method: arg0, arg1, arg ...

for example, the method:

     void publishStatus(String jobId, int count);

displayed as:

     void publishStatus(String arg0, int arg1);

What am I missing?

Thank,

Edit

It looks like this has already been discussed in more detail here: Saving parameter / argument names in compiled java classes

+5
source share
2 answers

Java . JVM 4.3.3 4.6. ( , , , .)

Eclipse , , . , ZIP .., , JAR.

FOLLOWUP :

JAR ( , , ). Eclipse JAR, JAR . ( Eclipse , .) , JAR.

+4

, java- " " jar.

ant debug="true" <javac ...>.

+3

All Articles