Interface javadoc not inherited
Brought to you by:
marcelschoen
The javadoc defined for methods in an interface is not
copied into implementation classes.
In my understanding the javadoc for the class Impl in
the following example would be "some docs".
public interface Intf {
/** some docs **/
void foo();
}
public class Impl {
void foo();
}
Logged In: YES
user_id=485290
True... Thanks for pointing that out. Gonna have a look at it.
Logged In: YES
user_id=485290
I just found that some refactoring of the internal
processing (and, especially, pre-processing) is necessary.
But as this will need some havier internal changes, I'll do
it in a follow-up release.