77 -tag factory \
78 -tag spec \
79 -tag see \
80 -taglet build.tools.taglet.ExtLink \
81 -taglet build.tools.taglet.Incubating \
82 -tagletpath $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
83 $(CUSTOM_JAVADOC_TAGS) \
84 #
85
86 # The reference tags must stay stable to allow for comparisons across the
87 # development cycle. If JAVADOC_TAGS needs to change, make sure that
88 # REFERENCE_TAGS remains unchanged, by copying and hardcoding, if necessary.
89 REFERENCE_TAGS := $(JAVADOC_TAGS)
90
91 # Which doclint checks to ignore
92 JAVADOC_DISABLED_DOCLINT_WARNINGS := missing
93 JAVADOC_DISABLED_DOCLINT_PACKAGES := org.w3c.* javax.smartcardio
94
95 # The initial set of options for javadoc
96 # -XDaccessInternalAPI is a temporary workaround, see 8373909
97 JAVADOC_OPTIONS := -use -keywords -notimestamp \
98 -serialwarn -encoding utf-8 -docencoding utf-8 -breakiterator \
99 -splitIndex --system none -javafx --expand-requires transitive \
100 --override-methods=summary \
101 -XDaccessInternalAPI
102
103 # The reference options must stay stable to allow for comparisons across the
104 # development cycle.
105 REFERENCE_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
106 -serialwarn -encoding utf-8 -breakiterator -splitIndex --system none \
107 -html5 -javafx --expand-requires transitive \
108 -XDaccessInternalAPI
109
110 # Should we add DRAFT stamps to the generated javadoc?
111 ifeq ($(VERSION_IS_GA), true)
112 IS_DRAFT := false
113 else
114 IS_DRAFT := true
115 endif
116
117 ################################################################################
118 # General text snippets
119
|
77 -tag factory \
78 -tag spec \
79 -tag see \
80 -taglet build.tools.taglet.ExtLink \
81 -taglet build.tools.taglet.Incubating \
82 -tagletpath $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
83 $(CUSTOM_JAVADOC_TAGS) \
84 #
85
86 # The reference tags must stay stable to allow for comparisons across the
87 # development cycle. If JAVADOC_TAGS needs to change, make sure that
88 # REFERENCE_TAGS remains unchanged, by copying and hardcoding, if necessary.
89 REFERENCE_TAGS := $(JAVADOC_TAGS)
90
91 # Which doclint checks to ignore
92 JAVADOC_DISABLED_DOCLINT_WARNINGS := missing
93 JAVADOC_DISABLED_DOCLINT_PACKAGES := org.w3c.* javax.smartcardio
94
95 # The initial set of options for javadoc
96 # -XDaccessInternalAPI is a temporary workaround, see 8373909
97 JAVADOC_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
98 -serialwarn -encoding utf-8 -docencoding utf-8 -breakiterator \
99 -splitIndex --system none -javafx --expand-requires transitive \
100 --enable-preview -source $(JDK_SOURCE_TARGET_VERSION) \
101 --override-methods=summary \
102 -XDaccessInternalAPI
103
104 # The reference options must stay stable to allow for comparisons across the
105 # development cycle.
106 REFERENCE_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
107 -serialwarn -encoding utf-8 -breakiterator -splitIndex --system none \
108 -html5 -javafx --expand-requires transitive \
109 -XDaccessInternalAPI
110
111 # Should we add DRAFT stamps to the generated javadoc?
112 ifeq ($(VERSION_IS_GA), true)
113 IS_DRAFT := false
114 else
115 IS_DRAFT := true
116 endif
117
118 ################################################################################
119 # General text snippets
120
|