src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/TagletManager.java
changeset 49879 601277b1d582
parent 48029 e9dab2492924
child 50240 b9c483223a91
equal deleted inserted replaced
49878:2422d4e027b0 49879:601277b1d582
     1 /*
     1 /*
     2  * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    24  */
    24  */
    25 
    25 
    26 package jdk.javadoc.internal.doclets.toolkit.taglets;
    26 package jdk.javadoc.internal.doclets.toolkit.taglets;
    27 
    27 
    28 import java.io.*;
    28 import java.io.*;
    29 import java.lang.reflect.InvocationTargetException;
       
    30 import java.util.*;
    29 import java.util.*;
    31 
    30 
    32 import javax.lang.model.element.Element;
    31 import javax.lang.model.element.Element;
    33 import javax.lang.model.element.ExecutableElement;
    32 import javax.lang.model.element.ExecutableElement;
    34 import javax.lang.model.element.ModuleElement;
    33 import javax.lang.model.element.ModuleElement;
   178      * True if we want to use @author tags.
   177      * True if we want to use @author tags.
   179      */
   178      */
   180     private final boolean showauthor;
   179     private final boolean showauthor;
   181 
   180 
   182     /**
   181     /**
   183      * True if we want to use JavaFX-related tags (@propertyGetter,
   182      * True if we want to use JavaFX-related tags (@defaultValue, @treatAsPrivate).
   184      * @propertySetter, @propertyDescription, @defaultValue, @treatAsPrivate).
       
   185      */
   183      */
   186     private final boolean javafx;
   184     private final boolean javafx;
   187 
   185 
   188     /**
   186     /**
   189      * Construct a new <code>TagletManager</code>.
   187      * Construct a new <code>TagletManager</code>.