false
to not check the validity of the link even if the configuration property specifies that links should be checked[3]
<javadoc path="java.awt.Button" /> <javadoc api="JAVASE9" path="java.awt.Button" /> <javadoc api="JAVASE10" module="java.desktop" path="java.awt.Button" /> <javadoc api="JAVASE11" module="java.desktop" path="java.awt.Button" />But this declaration is invalid:
<javadoc api="JAVASE11" path="java.awt.Button" />
java.lang
package. For example, these declarations are valid:This is a link to the <javadoc path="Float" /> class This is a link to the <javadoc path="java.awt.Button" member="setLabel(String)" /> methodThe list of classes for which the full paht is not necessary is specified here: Example
internalClass
attribute. For example:This is a link to <javadoc path="java.awt.geom.Point2D$Float"/> This is a link to <javadoc path="java.awt.geom.Point2D$Float" member="getX()"/> This is a link to <javadoc path="java.awt.geom.Point2D" internalClass="Double"/>will have the following result: This is a link to Point2D.Float
<javadoc location="http://docs.oracle.com/javase/8/docs/api/" path="java.awt.Button"/>
<javadoc path="javax.swing.JButton" member="setLabel(String)"/>You would have an error, because the
setLabel(String)
method is defined in the AbstractButton
class, and not on its JButton
subclass.<javadoc path="javax.swing.AbstractButton" altPath="JButton" member="setLabel(String)"/>With the following result:
This is a link to <javadoc path="java.awt.Button" /> This is a link to <javadoc path="java.awt.geom.Rectangle2D$Float" /> This is a complete link to <javadoc path="java.awt.Button" full="true"/> This is a link to <javadoc path="java.awt.Button" member="setLabel(java.lang.String)" /> This is a link to <javadoc path="java.awt.Button" member="setLabel(java.lang.String)" full="member"/> This is a link to the <javadoc path="java.awt.geom" type="package" /> packageResult: This is a link to Button
docJGenerator Copyright (c) 2016-2023 Herve Girod. All rights reserved.