< prev index next >

make/Docs.gmk

Print this page




 281     # Tell the ModuleGraph taglet to generate html links to soon-to-be-created
 282     # svg files with module graphs.
 283     $1_JAVA_ARGS += -DenableModuleGraph=true
 284   endif
 285 
 286   # Start with basic options and tags
 287   ifeq ($$($1_OPTIONS), )
 288     $1_OPTIONS := $$(JAVADOC_OPTIONS)
 289   endif
 290   ifeq ($$($1_TAGS), )
 291     $1_TAGS := $$(JAVADOC_TAGS)
 292   endif
 293   $1_OPTIONS += $$($1_TAGS)
 294 
 295   $1_OPTIONS += --module-source-path $$(MODULES_SOURCE_PATH)
 296   $1_OPTIONS += --module $$(call CommaList, $$($1_MODULES))
 297 
 298   # Create a string like "-Xdoclint:all,-syntax,-html,..."
 299   $1_OPTIONS += -Xdoclint:all,$$(call CommaList, $$(addprefix -, \
 300       $$(JAVADOC_DISABLED_DOCLINT)))


 301 
 302   $1_DOC_TITLE := $$($1_LONG_NAME)<br>Version $$(VERSION_SPECIFICATION) API \
 303       Specification
 304   $1_WINDOW_TITLE := $$(subst &amp;,&,$$($1_SHORT_NAME))$$(DRAFT_MARKER_TITLE)
 305   $1_HEADER_TITLE := <div $$(HEADER_STYLE)><strong>$$($1_SHORT_NAME)</strong> \
 306       $$(DRAFT_MARKER_STR)</div>
 307 
 308   $1_OPTIONS += -doctitle '$$($1_DOC_TITLE)'
 309   $1_OPTIONS += -windowtitle '$$($1_WINDOW_TITLE)'
 310   $1_OPTIONS += -header '$$($1_HEADER_TITLE)'
 311   $1_OPTIONS += -bottom '$$(JAVADOC_BOTTOM)'
 312   ifeq ($$(IS_DRAFT), true)
 313     $1_OPTIONS += -top '$$(JAVADOC_TOP)'
 314   endif
 315 
 316   # Do not store debug level options in VARDEPS.
 317   ifneq ($$(LOG_LEVEL), trace)
 318     $1_LOG_OPTION += -quiet
 319   else
 320     $1_LOG_OPTION += -verbose




 281     # Tell the ModuleGraph taglet to generate html links to soon-to-be-created
 282     # svg files with module graphs.
 283     $1_JAVA_ARGS += -DenableModuleGraph=true
 284   endif
 285 
 286   # Start with basic options and tags
 287   ifeq ($$($1_OPTIONS), )
 288     $1_OPTIONS := $$(JAVADOC_OPTIONS)
 289   endif
 290   ifeq ($$($1_TAGS), )
 291     $1_TAGS := $$(JAVADOC_TAGS)
 292   endif
 293   $1_OPTIONS += $$($1_TAGS)
 294 
 295   $1_OPTIONS += --module-source-path $$(MODULES_SOURCE_PATH)
 296   $1_OPTIONS += --module $$(call CommaList, $$($1_MODULES))
 297 
 298   # Create a string like "-Xdoclint:all,-syntax,-html,..."
 299   $1_OPTIONS += -Xdoclint:all,$$(call CommaList, $$(addprefix -, \
 300       $$(JAVADOC_DISABLED_DOCLINT)))
 301   # Ignore the doclint warnings in the W3C DOM package
 302   $1_OPTIONS += -Xdoclint/package:-org.w3c.*
 303 
 304   $1_DOC_TITLE := $$($1_LONG_NAME)<br>Version $$(VERSION_SPECIFICATION) API \
 305       Specification
 306   $1_WINDOW_TITLE := $$(subst &amp;,&,$$($1_SHORT_NAME))$$(DRAFT_MARKER_TITLE)
 307   $1_HEADER_TITLE := <div $$(HEADER_STYLE)><strong>$$($1_SHORT_NAME)</strong> \
 308       $$(DRAFT_MARKER_STR)</div>
 309 
 310   $1_OPTIONS += -doctitle '$$($1_DOC_TITLE)'
 311   $1_OPTIONS += -windowtitle '$$($1_WINDOW_TITLE)'
 312   $1_OPTIONS += -header '$$($1_HEADER_TITLE)'
 313   $1_OPTIONS += -bottom '$$(JAVADOC_BOTTOM)'
 314   ifeq ($$(IS_DRAFT), true)
 315     $1_OPTIONS += -top '$$(JAVADOC_TOP)'
 316   endif
 317 
 318   # Do not store debug level options in VARDEPS.
 319   ifneq ($$(LOG_LEVEL), trace)
 320     $1_LOG_OPTION += -quiet
 321   else
 322     $1_LOG_OPTION += -verbose


< prev index next >