langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocFinder.java
changeset 22163 3651128c74eb
parent 22159 682da512ec17
child 25454 376a52c9540c
equal deleted inserted replaced
22162:3b3e23e67329 22163:3651128c74eb
   169          * IOException and the overridden element has throws tags for IOException and
   169          * IOException and the overridden element has throws tags for IOException and
   170          * ZipException, both tags would be inherited because ZipException is a
   170          * ZipException, both tags would be inherited because ZipException is a
   171          * subclass of IOException.  This subclass of DocFinder.Output allows
   171          * subclass of IOException.  This subclass of DocFinder.Output allows
   172          * multiple tag inheritence.
   172          * multiple tag inheritence.
   173          */
   173          */
   174         public List<Tag> tagList  = new ArrayList<Tag>();
   174         public List<Tag> tagList  = new ArrayList<>();
   175     }
   175     }
   176 
   176 
   177     /**
   177     /**
   178      * Search for the requested comments in the given element.  If it does not
   178      * Search for the requested comments in the given element.  If it does not
   179      * have comments, return documentation from the overriden element if possible.
   179      * have comments, return documentation from the overriden element if possible.