I am working on a javadocs project, fixing all the errors and warnings that Javadoc shows. But after correcting most of them, there is only one that appears for some reason that I can’t imagine.
4 warnings
[WARNING] Javadoc Warnings
[WARNING] C:\Users\magno\Documents\Globalmentor\Globalmentor work\marmot\src\main\java\com\globalmentor\marmot\MarmotSession.java:100: warning - Tag @see: can't find getResourceKit(Repository, URFResource, Capability...) in com.globalmentor.marmot.MarmotSession
[WARNING] C:\Users\magno\Documents\Globalmentor\Globalmentor work\marmot\src\main\java\com\globalmentor\marmot\MarmotSession.java:140: warning - Tag @see: can't find getResourceKit(Repository, URFResource, Capability...) in com.globalmentor.marmot.MarmotSession
[WARNING] C:\Users\magno\Documents\Globalmentor\Globalmentor work\marmot\src\main\java\com\globalmentor\marmot\MarmotSession.java:166: warning - Tag @link: can't find getResourceKit(Repository, URFResource, Capability...) in com.globalmentor.marmot.MarmotSession
[WARNING] C:\Users\magno\Documents\Globalmentor\Globalmentor work\marmot\src\main\java\com\globalmentor\marmot\MarmotSession.java:140: warning - Tag @link: can't find getResourceKit(Repository, URFResource, Capability...) in com.globalmentor.marmot.MarmotSession
[INFO] Building jar: C:\Users\magno\Documents\Globalmentor\Globalmentor work\marmot\target\marmot-0.5.1-SNAPSHOT-javadoc.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 33.921 s
[INFO] Finished at: 2016-10-21T10:03:11-02:00
[INFO] Final Memory: 29M/412M
[INFO] ------------------------------------------------------------------------
The problem is this: these links belong to the same class than the method, and even Eclipse offers them when I start writing links, does anyone else know anything that could give me this warning?
Here is the javadocs that shows the warning:
public boolean hasResourceKit(final Repository repository, final URFResource resource, final Capability... capabilities);
public RK getResourceKit(final Repository repository, final URI resourceURI, final ContentType contentType, final Capability... capabilities)
throws ResourceIOException;
public RK getResourceKit(final ContentType contentType, final Capability... capabilities);
And here is the method that is mentioned in javadocs above, it is from the same class:
public RK getResourceKit(final Repository repository, final URFResource resource, final Capability... capabilities);
Since the project is publicly available, here is the link for the transfer request of what I did to fix javadocs: Bitbucket - Globalmentor project: MARMOT- 5