我有一个这样的课程:
package org.jjerms.thing;
interface IThing {
void doSomething();
}
final class Thing implements IThing {
/**
* This Javadoc pretends (to users outside the package)
* that doSomething originates here.
*/
public void doSomething() {
// some code...
}
}
当我在Eclipse中查看Javadoc for Thing#doSomething但是从另一个包中查看时,Javadoc查看器讨论了IThing(它表示在IThing中指定了soSomething)。
我可以阻止这个吗?我不希望客户对IThing有任何了解。