D
Deleted member 103
Guest
Hi,
I try to write my first library, unfortunately I can't keep going on.
The jar file I can create without problems, only the JavaDoc doesn't work.
What am I doing wrong?
Ciao,
Filippo
I try to write my first library, unfortunately I can't keep going on.
The jar file I can create without problems, only the JavaDoc doesn't work.
What am I doing wrong?
B4X:
import anywheresoftware.b4a.BA.Author;
import anywheresoftware.b4a.BA.ShortName;
import anywheresoftware.b4a.BA.Version;
@ShortName("test")
@Version(1.0f)
@Author("Filippo")
/**
* My Comment.
*/
public class test {
public int getWidth() {
return 1;
}
public void setWidth(int value) {
}
}
Error: javadoc: error - invalid flag: -b4atarget
Ciao,
Filippo