< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/TagletWriter.java

Print this page
rev 58348 : remove dead code; update tests

*** 23,35 **** --- 23,37 ---- * questions. */ package jdk.javadoc.internal.doclets.toolkit.taglets; + import java.util.EnumSet; import java.util.List; import javax.lang.model.element.Element; + import javax.lang.model.element.Name; import javax.lang.model.element.VariableElement; import javax.lang.model.type.TypeMirror; import com.sun.source.doctree.DocTree; import jdk.javadoc.internal.doclets.toolkit.BaseConfiguration;
*** 231,242 **** Utils utils = writer.configuration().utils; tagletManager.checkTags(element, utils.getBlockTags(element), false); tagletManager.checkTags(element, utils.getFullBody(element), true); for (Taglet taglet : taglets) { if (utils.isTypeElement(element) && taglet instanceof ParamTaglet) { ! //The type parameters are documented in a special section away ! //from the tag info, so skip here. continue; } if (taglet instanceof DeprecatedTaglet) { //Deprecated information is documented "inline", not in tag info //section. --- 233,244 ---- Utils utils = writer.configuration().utils; tagletManager.checkTags(element, utils.getBlockTags(element), false); tagletManager.checkTags(element, utils.getFullBody(element), true); for (Taglet taglet : taglets) { if (utils.isTypeElement(element) && taglet instanceof ParamTaglet) { ! // The type parameters and state components are documented in a special ! // section away from the tag info, so skip here. continue; } if (taglet instanceof DeprecatedTaglet) { //Deprecated information is documented "inline", not in tag info //section.
< prev index next >