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