langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AnnotationTypeWriterImpl.java
changeset 41452 ddaef4bba083
parent 40587 1c355ea550ed
child 42816 3638773ff1b0
equal deleted inserted replaced
41451:a847c7aa25a7 41452:ddaef4bba083
   288     /**
   288     /**
   289      * {@inheritDoc}
   289      * {@inheritDoc}
   290      */
   290      */
   291     @Override
   291     @Override
   292     public void addAnnotationTypeDescription(Content annotationInfoTree) {
   292     public void addAnnotationTypeDescription(Content annotationInfoTree) {
   293         if(!configuration.nocomment) {
   293         if (!configuration.nocomment) {
   294             if (!utils.getBody(annotationType).isEmpty()) {
   294             if (!utils.getFullBody(annotationType).isEmpty()) {
   295                 addInlineComment(annotationType, annotationInfoTree);
   295                 addInlineComment(annotationType, annotationInfoTree);
   296             }
   296             }
   297         }
   297         }
   298     }
   298     }
   299 
   299 
   300     /**
   300     /**
   301      * {@inheritDoc}
   301      * {@inheritDoc}
   302      */
   302      */
   303     @Override
   303     @Override
   304     public void addAnnotationTypeTagInfo(Content annotationInfoTree) {
   304     public void addAnnotationTypeTagInfo(Content annotationInfoTree) {
   305         if(!configuration.nocomment) {
   305         if (!configuration.nocomment) {
   306             addTagsInfo(annotationType, annotationInfoTree);
   306             addTagsInfo(annotationType, annotationInfoTree);
   307         }
   307         }
   308     }
   308     }
   309 
   309 
   310     /**
   310     /**