Hey guys,
I use the javadoc tool on the command line. It works fine but there’s a little difference between using it on the command line and in eclipse.
Consider this piece of code:
/** documentation */
public Rope split(Joint joint) {
// ...
}
/** documentation */
public Rope split(int jointIndex) {
// ...
}
Using eclipse to export the documentation, I can see both methods in it.
However, if I use the javadoc command myself, I only see the first one which in this case is split(Joint)
.
Even weirder, in the same document and same class, I can see both of these methods using the command line:
/** documentation */
public Rope build(int length) {
// ...
}
/** documentation */
public Rope build(int length, Builder builder) {
// ...
}
Eclipse uses the same executable so I guess I’m missing some parameters or something…
Thanks for any ideas!