langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/Configuration.java
changeset 1475 19c0851667ca
parent 1264 076a3cde30d5
child 1789 7ac8c0815000
equal deleted inserted replaced
1474:b808d0ebfe20 1475:19c0851667ca
   111      * by most Internet search engines.
   111      * by most Internet search engines.
   112      */
   112      */
   113     public boolean keywords = false;
   113     public boolean keywords = false;
   114 
   114 
   115     /**
   115     /**
   116      * The meta tag keywords sole-instance.
   116      * The meta tag keywords instance.
   117      */
   117      */
   118     public final MetaKeywords metakeywords = MetaKeywords.getInstance(this);
   118     public final MetaKeywords metakeywords = new MetaKeywords(this);
   119 
   119 
   120     /**
   120     /**
   121      * The list of doc-file subdirectories to exclude
   121      * The list of doc-file subdirectories to exclude
   122      */
   122      */
   123     protected Set<String> excludedDocFileDirs;
   123     protected Set<String> excludedDocFileDirs;
   209      * Default is false.
   209      * Default is false.
   210      */
   210      */
   211     public boolean notimestamp= false;
   211     public boolean notimestamp= false;
   212 
   212 
   213     /**
   213     /**
   214      * The package grouping sole-instance.
   214      * The package grouping instance.
   215      */
   215      */
   216     public final Group group = Group.getInstance(this);
   216     public final Group group = new Group(this);
   217 
   217 
   218     /**
   218     /**
   219      * The tracker of external package links (sole-instance).
   219      * The tracker of external package links.
   220      */
   220      */
   221     public final Extern extern = new Extern(this);
   221     public final Extern extern = new Extern(this);
   222 
   222 
   223     /**
   223     /**
   224      * Return the build date for the doclet.
   224      * Return the build date for the doclet.