< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/ElementsTable.java

Print this page

        

*** 983,993 **** private boolean isTypeElementSelected(TypeElement te) { return (xclasses || toolEnv.getFileKind(te) == SOURCE) && isSelected(te); } ! @SuppressWarnings("removal") SimpleElementVisitor14<Boolean, Void> visibleElementVisitor = null; /** * Returns true if the element is selected, by applying * the access filter checks. Special treatment is applied to * types, for a top level type the access filter applies completely, --- 983,993 ---- private boolean isTypeElementSelected(TypeElement te) { return (xclasses || toolEnv.getFileKind(te) == SOURCE) && isSelected(te); } ! @SuppressWarnings("preview") SimpleElementVisitor14<Boolean, Void> visibleElementVisitor = null; /** * Returns true if the element is selected, by applying * the access filter checks. Special treatment is applied to * types, for a top level type the access filter applies completely,
*** 995,1005 **** * the enclosing is a static or the enclosing is also selected. * * @param e the element to be checked * @return true if the element is visible */ ! @SuppressWarnings("removal") public boolean isSelected(Element e) { if (toolEnv.isSynthetic((Symbol) e)) { return false; } if (visibleElementVisitor == null) { --- 995,1005 ---- * the enclosing is a static or the enclosing is also selected. * * @param e the element to be checked * @return true if the element is visible */ ! @SuppressWarnings("preview") public boolean isSelected(Element e) { if (toolEnv.isSynthetic((Symbol) e)) { return false; } if (visibleElementVisitor == null) {
*** 1035,1045 **** }; } return visibleElementVisitor.visit(e); } ! @SuppressWarnings("removal") private class IncludedVisitor extends SimpleElementVisitor14<Boolean, Void> { final private Set<Element> includedCache; public IncludedVisitor() { includedCache = new LinkedHashSet<>(); --- 1035,1045 ---- }; } return visibleElementVisitor.visit(e); } ! @SuppressWarnings("preview") private class IncludedVisitor extends SimpleElementVisitor14<Boolean, Void> { final private Set<Element> includedCache; public IncludedVisitor() { includedCache = new LinkedHashSet<>();
< prev index next >