src/share/classes/com/sun/tools/doclets/internal/toolkit/Configuration.java

changeset 1606
ccbe7ffdd867
parent 1570
f91144b7da75
child 1611
6f988040a1c8
     1.1 --- a/src/share/classes/com/sun/tools/doclets/internal/toolkit/Configuration.java	Fri Feb 22 18:19:51 2013 +0000
     1.2 +++ b/src/share/classes/com/sun/tools/doclets/internal/toolkit/Configuration.java	Sun Feb 24 11:36:58 2013 -0800
     1.3 @@ -176,6 +176,12 @@
     1.4      public boolean showauthor = false;
     1.5  
     1.6      /**
     1.7 +     * Generate documentation for JavaFX getters and setters automatically
     1.8 +     * by copying it from the appropriate property definition.
     1.9 +     */
    1.10 +    public boolean javafx = false;
    1.11 +
    1.12 +    /**
    1.13       * Generate version specific information for the all the classes
    1.14       * if @version tag is used in the doc comment and if -version option is
    1.15       * used. <code>showversion</code> is set to true if -version option is
    1.16 @@ -317,6 +323,7 @@
    1.17          option = option.toLowerCase();
    1.18          if (option.equals("-author") ||
    1.19              option.equals("-docfilessubdirs") ||
    1.20 +            option.equals("-javafx") ||
    1.21              option.equals("-keywords") ||
    1.22              option.equals("-linksource") ||
    1.23              option.equals("-nocomment") ||
    1.24 @@ -422,6 +429,8 @@
    1.25                  encoding = os[1];
    1.26              } else if (opt.equals("-author")) {
    1.27                  showauthor = true;
    1.28 +            } else  if (opt.equals("-javafx")) {
    1.29 +                javafx = true;
    1.30              } else if (opt.equals("-nosince")) {
    1.31                  nosince = true;
    1.32              } else if (opt.equals("-version")) {
    1.33 @@ -517,7 +526,7 @@
    1.34       */
    1.35      private void initTagletManager(Set<String[]> customTagStrs) {
    1.36          tagletManager = tagletManager == null ?
    1.37 -            new TagletManager(nosince, showversion, showauthor, message) :
    1.38 +            new TagletManager(nosince, showversion, showauthor, javafx, message) :
    1.39              tagletManager;
    1.40          String[] args;
    1.41          for (Iterator<String[]> it = customTagStrs.iterator(); it.hasNext(); ) {

mercurial