< prev index next >

make/Docs.gmk

Print this page

 76     -tag serialData \
 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 JAVADOC_OPTIONS := -use -keywords -notimestamp \
 97     -serialwarn -encoding utf-8 -docencoding utf-8 -breakiterator \
 98     -splitIndex --system none -javafx --expand-requires transitive \


 99     --override-methods=summary
100 
101 # The reference options must stay stable to allow for comparisons across the
102 # development cycle.
103 REFERENCE_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
104     -serialwarn -encoding utf-8 -breakiterator -splitIndex --system none \
105     -html5 -javafx --expand-requires transitive
106 
107 # Should we add DRAFT stamps to the generated javadoc?
108 ifeq ($(VERSION_IS_GA), true)
109   IS_DRAFT := false
110 else
111   IS_DRAFT := true
112 endif
113 
114 ################################################################################
115 # General text snippets
116 
117 FULL_COMPANY_NAME := Oracle and/or its affiliates
118 COMPANY_ADDRESS := 500 Oracle Parkway, Redwood Shores, CA 94065 USA

 76     -tag serialData \
 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 JAVADOC_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
 97     -serialwarn -encoding utf-8 -docencoding utf-8 -breakiterator \
 98     -splitIndex --system none -javafx --expand-requires transitive \
 99     -XDenableValueTypes \
100     --enable-preview -source $(JDK_SOURCE_TARGET_VERSION) \
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 utf-8 -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
< prev index next >