1
votes

auto generated method argument names looks like arg0, arg1, arg2 is there any way to have smart arg names like

public void onUpgrade(SQLiteDatabase arg0, int arg1, int arg2) public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)

edit: My javadoc file seems missing, there are both android sdk and jdk are attached, i don't know googled but configuration of eclipse is a bit hard

edit: eclipse android javadoc attachement solved my problem

1

1 Answers

0
votes

The names of the arguments are taken from the class files of the libraries. The names are optional and are normally only present in jars for debugging. Most probably your jars contain no debug information. Switch them with jars with debug information and you will get a much better support from eclipse.

Edit: Optionally you can add source information to the jars for the same behaviour.