< prev index next >

make/Javadoc.gmk

Print this page




 291   $(call OptionPair,-tag,specdefault:X) ; \
 292   $(call OptionPair,-tag,Note:X) ; \
 293   $(call OptionPair,-tag,ToDo:X) ; \
 294   $(call OptionPair,-tag,apiNote:a:API Note:) ; \
 295   $(call OptionPair,-tag,implSpec:a:Implementation Requirements:) ; \
 296   $(call OptionPair,-tag,implNote:a:Implementation Note:) ; \
 297   $(call OptionPair,-tag,param) ; \
 298   $(call OptionPair,-tag,return) ; \
 299   $(call OptionPair,-tag,throws) ; \
 300   $(call OptionPair,-tag,since) ; \
 301   $(call OptionPair,-tag,version) ; \
 302   $(call OptionPair,-tag,serialData) ; \
 303   $(call OptionPair,-tag,factory) ; \
 304   $(call OptionPair,-tag,see) ; \
 305   $(call OptionPair,-tag,$(TAG_JVMS)) ; \
 306   $(call OptionPair,-tag,$(TAG_JLS))
 307 endef
 308 
 309 
 310 
 311 # Assume we need a draft format whenever the pre-release identifier is non-empty
 312 ifneq ($(VERSION_PRE),)
 313   DRAFT_HEADER := <br><strong>DRAFT&nbsp;$(VERSION_STRING)</strong>
 314   DRAFT_BOTTOM := <br><strong>DRAFT&nbsp;$(VERSION_STRING)</strong>
 315   DRAFT_WINTITLE := $(VERSION_BUILD)
 316   # Early access top text (not used in FCS releases)
 317   COREAPI_TOP_EARLYACCESS := \
 318 <div style="background-color: \#EEEEEE"> \
 319 <div style="padding: 6px; margin-top: 2px; margin-bottom: 6px; \
 320 margin-left: 6px; margin-right: 6px; text-align: justify; \
 321 font-size: 80%; font-family: Helvetica, Arial, sans-serif; \
 322 font-weight: normal;"> \
 323 Please note that the specifications and other information \
 324 contained herein are not final and are subject to change. \
 325 The information is being made available to you solely for purpose of \
 326 evaluation. \
 327 </div> </div>
 328 else
 329   DRAFT_HEADER :=
 330   DRAFT_BOTTOM :=
 331   DRAFT_WINTITLE :=
 332   COREAPI_TOP_EARLYACCESS :=




 291   $(call OptionPair,-tag,specdefault:X) ; \
 292   $(call OptionPair,-tag,Note:X) ; \
 293   $(call OptionPair,-tag,ToDo:X) ; \
 294   $(call OptionPair,-tag,apiNote:a:API Note:) ; \
 295   $(call OptionPair,-tag,implSpec:a:Implementation Requirements:) ; \
 296   $(call OptionPair,-tag,implNote:a:Implementation Note:) ; \
 297   $(call OptionPair,-tag,param) ; \
 298   $(call OptionPair,-tag,return) ; \
 299   $(call OptionPair,-tag,throws) ; \
 300   $(call OptionPair,-tag,since) ; \
 301   $(call OptionPair,-tag,version) ; \
 302   $(call OptionPair,-tag,serialData) ; \
 303   $(call OptionPair,-tag,factory) ; \
 304   $(call OptionPair,-tag,see) ; \
 305   $(call OptionPair,-tag,$(TAG_JVMS)) ; \
 306   $(call OptionPair,-tag,$(TAG_JLS))
 307 endef
 308 
 309 
 310 
 311 # Assume we need a draft format when the version string is not a GA version.
 312 ifeq ($(VERSION_IS_GA), false)
 313   DRAFT_HEADER := <br><strong>DRAFT&nbsp;$(VERSION_STRING)</strong>
 314   DRAFT_BOTTOM := <br><strong>DRAFT&nbsp;$(VERSION_STRING)</strong>
 315   DRAFT_WINTITLE := $(VERSION_BUILD)
 316   # Early access top text (not used in FCS releases)
 317   COREAPI_TOP_EARLYACCESS := \
 318 <div style="background-color: \#EEEEEE"> \
 319 <div style="padding: 6px; margin-top: 2px; margin-bottom: 6px; \
 320 margin-left: 6px; margin-right: 6px; text-align: justify; \
 321 font-size: 80%; font-family: Helvetica, Arial, sans-serif; \
 322 font-weight: normal;"> \
 323 Please note that the specifications and other information \
 324 contained herein are not final and are subject to change. \
 325 The information is being made available to you solely for purpose of \
 326 evaluation. \
 327 </div> </div>
 328 else
 329   DRAFT_HEADER :=
 330   DRAFT_BOTTOM :=
 331   DRAFT_WINTITLE :=
 332   COREAPI_TOP_EARLYACCESS :=


< prev index next >