Java Code Examples for com.sun.source.doctree.EndElementTree#getName()

The following examples show how to use com.sun.source.doctree.EndElementTree#getName() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HtmlDocletWriter.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
boolean ignoreNonInlineTag(DocTree dtree) {
    Name name = null;
    if (dtree.getKind() == Kind.START_ELEMENT) {
        StartElementTree setree = (StartElementTree)dtree;
        name = setree.getName();
    } else if (dtree.getKind() == Kind.END_ELEMENT) {
        EndElementTree eetree = (EndElementTree)dtree;
        name = eetree.getName();
    }

    if (name != null) {
        com.sun.tools.doclint.HtmlTag htmlTag = com.sun.tools.doclint.HtmlTag.get(name);
        if (htmlTag != null &&
                htmlTag.blockType != com.sun.tools.doclint.HtmlTag.BlockType.INLINE) {
            return true;
        }
    }
    return false;
}
 
Example 2
Source File: Checker.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitEndElement(EndElementTree tree, Void ignore) {
    final Name treeName = tree.getName();
    final HtmlTag t = HtmlTag.get(treeName);
    if (t == null) {
        env.messages.error(HTML, tree, "dc.tag.unknown", treeName);
    } else if (t.endKind == HtmlTag.EndKind.NONE) {
        env.messages.error(HTML, tree, "dc.tag.end.not.permitted", treeName);
    } else {
        boolean done = false;
        while (!tagStack.isEmpty()) {
            TagStackItem top = tagStack.peek();
            if (t == top.tag) {
                switch (t) {
                    case TABLE:
                        if (!top.attrs.contains(HtmlTag.Attr.SUMMARY)
                                && !top.flags.contains(Flag.TABLE_HAS_CAPTION)) {
                            env.messages.error(ACCESSIBILITY, tree,
                                    "dc.no.summary.or.caption.for.table");
                        }
                }
                warnIfEmpty(top, tree);
                tagStack.pop();
                done = true;
                break;
            } else if (top.tag == null || top.tag.endKind != HtmlTag.EndKind.REQUIRED) {
                tagStack.pop();
            } else {
                boolean found = false;
                for (TagStackItem si: tagStack) {
                    if (si.tag == t) {
                        found = true;
                        break;
                    }
                }
                if (found && top.tree.getKind() == DocTree.Kind.START_ELEMENT) {
                    env.messages.error(HTML, top.tree, "dc.tag.start.unmatched",
                            ((StartElementTree) top.tree).getName());
                    tagStack.pop();
                } else {
                    env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
                    done = true;
                    break;
                }
            }
        }

        if (!done && tagStack.isEmpty()) {
            env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
        }
    }

    return super.visitEndElement(tree, ignore);
}
 
Example 3
Source File: Checker.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitEndElement(EndElementTree tree, Void ignore) {
    final Name treeName = tree.getName();
    final HtmlTag t = HtmlTag.get(treeName);
    if (t == null) {
        env.messages.error(HTML, tree, "dc.tag.unknown", treeName);
    } else if (t.endKind == HtmlTag.EndKind.NONE) {
        env.messages.error(HTML, tree, "dc.tag.end.not.permitted", treeName);
    } else {
        boolean done = false;
        while (!tagStack.isEmpty()) {
            TagStackItem top = tagStack.peek();
            if (t == top.tag) {
                switch (t) {
                    case TABLE:
                        if (!top.attrs.contains(HtmlTag.Attr.SUMMARY)
                                && !top.flags.contains(Flag.TABLE_HAS_CAPTION)) {
                            env.messages.error(ACCESSIBILITY, tree,
                                    "dc.no.summary.or.caption.for.table");
                        }
                }
                warnIfEmpty(top, tree);
                tagStack.pop();
                done = true;
                break;
            } else if (top.tag == null || top.tag.endKind != HtmlTag.EndKind.REQUIRED) {
                tagStack.pop();
            } else {
                boolean found = false;
                for (TagStackItem si: tagStack) {
                    if (si.tag == t) {
                        found = true;
                        break;
                    }
                }
                if (found && top.tree.getKind() == DocTree.Kind.START_ELEMENT) {
                    env.messages.error(HTML, top.tree, "dc.tag.start.unmatched",
                            ((StartElementTree) top.tree).getName());
                    tagStack.pop();
                } else {
                    env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
                    done = true;
                    break;
                }
            }
        }

        if (!done && tagStack.isEmpty()) {
            env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
        }
    }

    return super.visitEndElement(tree, ignore);
}
 
Example 4
Source File: Checker.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitEndElement(EndElementTree tree, Void ignore) {
    final Name treeName = tree.getName();
    final HtmlTag t = HtmlTag.get(treeName);
    if (t == null) {
        env.messages.error(HTML, tree, "dc.tag.unknown", treeName);
    } else if (t.endKind == HtmlTag.EndKind.NONE) {
        env.messages.error(HTML, tree, "dc.tag.end.not.permitted", treeName);
    } else {
        boolean done = false;
        while (!tagStack.isEmpty()) {
            TagStackItem top = tagStack.peek();
            if (t == top.tag) {
                switch (t) {
                    case TABLE:
                        if (!top.attrs.contains(HtmlTag.Attr.SUMMARY)
                                && !top.flags.contains(Flag.TABLE_HAS_CAPTION)) {
                            env.messages.error(ACCESSIBILITY, tree,
                                    "dc.no.summary.or.caption.for.table");
                        }
                }
                warnIfEmpty(top, tree);
                tagStack.pop();
                done = true;
                break;
            } else if (top.tag == null || top.tag.endKind != HtmlTag.EndKind.REQUIRED) {
                tagStack.pop();
            } else {
                boolean found = false;
                for (TagStackItem si: tagStack) {
                    if (si.tag == t) {
                        found = true;
                        break;
                    }
                }
                if (found && top.tree.getKind() == DocTree.Kind.START_ELEMENT) {
                    env.messages.error(HTML, top.tree, "dc.tag.start.unmatched",
                            ((StartElementTree) top.tree).getName());
                    tagStack.pop();
                } else {
                    env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
                    done = true;
                    break;
                }
            }
        }

        if (!done && tagStack.isEmpty()) {
            env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
        }
    }

    return super.visitEndElement(tree, ignore);
}
 
Example 5
Source File: Analyzer.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
    @Messages({"# {0} - Tag Name", "TAG_END_NOT_PERMITTED=Invalid End Tag: </{0}>",
               "# {0} - Tag Name", "TAG_END_UNEXPECTED=Unexpected End Tag: </{0}>",
               "# {0} - Tag Name", "TAG_START_UNMATCHED=End Tag Missing: </{0}>"})
    public Void visitEndElement(EndElementTree node, List<ErrorDescription> errors) {
        DocTreePath currentDocPath = getCurrentPath();
        DocTreePathHandle dtph = DocTreePathHandle.create(currentDocPath, javac);
        if(dtph == null) {
            return null;
        }
        DocSourcePositions sp = (DocSourcePositions) javac.getTrees().getSourcePositions();
        int start = (int) sp.getStartPosition(javac.getCompilationUnit(), currentDocPath.getDocComment(), node);
        int end = (int) sp.getEndPosition(javac.getCompilationUnit(), currentDocPath.getDocComment(), node);

        final Name treeName = node.getName();
        final HtmlTag t = HtmlTag.get(treeName);
        if (t == null) {
             errors.add(ErrorDescriptionFactory.forSpan(ctx, start, end, TAG_END_UNKNOWN(treeName)));
        } else if (t.endKind == HtmlTag.EndKind.NONE) {
//            env.messages.error(HTML, node, "dc.tag.end.not.permitted", treeName);
            errors.add(ErrorDescriptionFactory.forSpan(ctx, start, end, TAG_END_NOT_PERMITTED(treeName)));
        } else {
            boolean done = false;
            while (!tagStack.isEmpty()) {
                StartElementTree startTree = tagStack.peek();
                Name tagName = startTree.getName();
                HtmlTag tag = HtmlTag.get(tagName);
                if (t == tag) {
                    tagStack.pop();
                    done = true;
                    break;
                } else if (tag.endKind != HtmlTag.EndKind.REQUIRED) {
                    tagStack.pop();
                } else {
                    boolean found = false;
                    for (StartElementTree set : tagStack) {
                        HtmlTag si = HtmlTag.get(set.getName());
                        if (si == t) {
                            found = true;
                            break;
                        }
                    }
                    if (found) {
                        int s = (int) sp.getStartPosition(javac.getCompilationUnit(), currentDocPath.getDocComment(), startTree);
                        int e = (int) sp.getEndPosition(javac.getCompilationUnit(), currentDocPath.getDocComment(), startTree);
                        errors.add(ErrorDescriptionFactory.forSpan(ctx, s, e, TAG_START_UNMATCHED(tagName)));
                        tagStack.pop();
                    } else {
                        errors.add(ErrorDescriptionFactory.forSpan(ctx, start, end, TAG_END_UNEXPECTED(treeName)));
                        done = true;
                        break;
                    }
                }
            }
            if (!done && tagStack.isEmpty()) {
                errors.add(ErrorDescriptionFactory.forSpan(ctx, start, end, TAG_END_UNEXPECTED(treeName)));
            }
        }
        return super.visitEndElement(node, errors);
    }
 
Example 6
Source File: Checker.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitEndElement(EndElementTree tree, Void ignore) {
    final Name treeName = tree.getName();
    final HtmlTag t = HtmlTag.get(treeName);
    if (t == null) {
        env.messages.error(HTML, tree, "dc.tag.unknown", treeName);
    } else if (t.endKind == HtmlTag.EndKind.NONE) {
        env.messages.error(HTML, tree, "dc.tag.end.not.permitted", treeName);
    } else {
        boolean done = false;
        while (!tagStack.isEmpty()) {
            TagStackItem top = tagStack.peek();
            if (t == top.tag) {
                switch (t) {
                    case TABLE:
                        if (!top.attrs.contains(HtmlTag.Attr.SUMMARY)
                                && !top.flags.contains(Flag.TABLE_HAS_CAPTION)) {
                            env.messages.error(ACCESSIBILITY, tree,
                                    "dc.no.summary.or.caption.for.table");
                        }
                }
                warnIfEmpty(top, tree);
                tagStack.pop();
                done = true;
                break;
            } else if (top.tag == null || top.tag.endKind != HtmlTag.EndKind.REQUIRED) {
                tagStack.pop();
            } else {
                boolean found = false;
                for (TagStackItem si: tagStack) {
                    if (si.tag == t) {
                        found = true;
                        break;
                    }
                }
                if (found && top.tree.getKind() == DocTree.Kind.START_ELEMENT) {
                    env.messages.error(HTML, top.tree, "dc.tag.start.unmatched",
                            ((StartElementTree) top.tree).getName());
                    tagStack.pop();
                } else {
                    env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
                    done = true;
                    break;
                }
            }
        }

        if (!done && tagStack.isEmpty()) {
            env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
        }
    }

    return super.visitEndElement(tree, ignore);
}
 
Example 7
Source File: Checker.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Override @DefinedBy(Api.COMPILER_TREE)
public Void visitEndElement(EndElementTree tree, Void ignore) {
    final Name treeName = tree.getName();
    final HtmlTag t = HtmlTag.get(treeName);
    if (t == null) {
        env.messages.error(HTML, tree, "dc.tag.unknown", treeName);
    } else if (t.endKind == HtmlTag.EndKind.NONE) {
        env.messages.error(HTML, tree, "dc.tag.end.not.permitted", treeName);
    } else {
        boolean done = false;
        while (!tagStack.isEmpty()) {
            TagStackItem top = tagStack.peek();
            if (t == top.tag) {
                switch (t) {
                    case TABLE:
                        if (!top.attrs.contains(HtmlTag.Attr.SUMMARY)
                                && !top.flags.contains(Flag.TABLE_HAS_CAPTION)) {
                            env.messages.error(ACCESSIBILITY, tree,
                                    "dc.no.summary.or.caption.for.table");
                        }
                        break;

                    case SECTION:
                    case ARTICLE:
                        if (env.htmlVersion == HtmlVersion.HTML5 && !top.flags.contains(Flag.HAS_HEADING)) {
                            env.messages.error(HTML, tree, "dc.tag.requires.heading", treeName);
                        }
                        break;
                }
                warnIfEmpty(top, tree);
                tagStack.pop();
                done = true;
                break;
            } else if (top.tag == null || top.tag.endKind != HtmlTag.EndKind.REQUIRED) {
                tagStack.pop();
            } else {
                boolean found = false;
                for (TagStackItem si: tagStack) {
                    if (si.tag == t) {
                        found = true;
                        break;
                    }
                }
                if (found && top.tree.getKind() == DocTree.Kind.START_ELEMENT) {
                    env.messages.error(HTML, top.tree, "dc.tag.start.unmatched",
                            ((StartElementTree) top.tree).getName());
                    tagStack.pop();
                } else {
                    env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
                    done = true;
                    break;
                }
            }
        }

        if (!done && tagStack.isEmpty()) {
            env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
        }
    }

    return super.visitEndElement(tree, ignore);
}
 
Example 8
Source File: Checker.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitEndElement(EndElementTree tree, Void ignore) {
    final Name treeName = tree.getName();
    final HtmlTag t = HtmlTag.get(treeName);
    if (t == null) {
        env.messages.error(HTML, tree, "dc.tag.unknown", treeName);
    } else if (t.endKind == HtmlTag.EndKind.NONE) {
        env.messages.error(HTML, tree, "dc.tag.end.not.permitted", treeName);
    } else {
        boolean done = false;
        while (!tagStack.isEmpty()) {
            TagStackItem top = tagStack.peek();
            if (t == top.tag) {
                switch (t) {
                    case TABLE:
                        if (!top.attrs.contains(HtmlTag.Attr.SUMMARY)
                                && !top.flags.contains(Flag.TABLE_HAS_CAPTION)) {
                            env.messages.error(ACCESSIBILITY, tree,
                                    "dc.no.summary.or.caption.for.table");
                        }
                }
                warnIfEmpty(top, tree);
                tagStack.pop();
                done = true;
                break;
            } else if (top.tag == null || top.tag.endKind != HtmlTag.EndKind.REQUIRED) {
                tagStack.pop();
            } else {
                boolean found = false;
                for (TagStackItem si: tagStack) {
                    if (si.tag == t) {
                        found = true;
                        break;
                    }
                }
                if (found && top.tree.getKind() == DocTree.Kind.START_ELEMENT) {
                    env.messages.error(HTML, top.tree, "dc.tag.start.unmatched",
                            ((StartElementTree) top.tree).getName());
                    tagStack.pop();
                } else {
                    env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
                    done = true;
                    break;
                }
            }
        }

        if (!done && tagStack.isEmpty()) {
            env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
        }
    }

    return super.visitEndElement(tree, ignore);
}
 
Example 9
Source File: Checker.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitEndElement(EndElementTree tree, Void ignore) {
    final Name treeName = tree.getName();
    final HtmlTag t = HtmlTag.get(treeName);
    if (t == null) {
        env.messages.error(HTML, tree, "dc.tag.unknown", treeName);
    } else if (t.endKind == HtmlTag.EndKind.NONE) {
        env.messages.error(HTML, tree, "dc.tag.end.not.permitted", treeName);
    } else {
        boolean done = false;
        while (!tagStack.isEmpty()) {
            TagStackItem top = tagStack.peek();
            if (t == top.tag) {
                switch (t) {
                    case TABLE:
                        if (!top.attrs.contains(HtmlTag.Attr.SUMMARY)
                                && !top.flags.contains(Flag.TABLE_HAS_CAPTION)) {
                            env.messages.error(ACCESSIBILITY, tree,
                                    "dc.no.summary.or.caption.for.table");
                        }
                }
                warnIfEmpty(top, tree);
                tagStack.pop();
                done = true;
                break;
            } else if (top.tag == null || top.tag.endKind != HtmlTag.EndKind.REQUIRED) {
                tagStack.pop();
            } else {
                boolean found = false;
                for (TagStackItem si: tagStack) {
                    if (si.tag == t) {
                        found = true;
                        break;
                    }
                }
                if (found && top.tree.getKind() == DocTree.Kind.START_ELEMENT) {
                    env.messages.error(HTML, top.tree, "dc.tag.start.unmatched",
                            ((StartElementTree) top.tree).getName());
                    tagStack.pop();
                } else {
                    env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
                    done = true;
                    break;
                }
            }
        }

        if (!done && tagStack.isEmpty()) {
            env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
        }
    }

    return super.visitEndElement(tree, ignore);
}
 
Example 10
Source File: Checker.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitEndElement(EndElementTree tree, Void ignore) {
    final Name treeName = tree.getName();
    final HtmlTag t = HtmlTag.get(treeName);
    if (t == null) {
        env.messages.error(HTML, tree, "dc.tag.unknown", treeName);
    } else if (t.endKind == HtmlTag.EndKind.NONE) {
        env.messages.error(HTML, tree, "dc.tag.end.not.permitted", treeName);
    } else {
        boolean done = false;
        while (!tagStack.isEmpty()) {
            TagStackItem top = tagStack.peek();
            if (t == top.tag) {
                switch (t) {
                    case TABLE:
                        if (!top.attrs.contains(HtmlTag.Attr.SUMMARY)
                                && !top.flags.contains(Flag.TABLE_HAS_CAPTION)) {
                            env.messages.error(ACCESSIBILITY, tree,
                                    "dc.no.summary.or.caption.for.table");
                        }
                }
                warnIfEmpty(top, tree);
                tagStack.pop();
                done = true;
                break;
            } else if (top.tag == null || top.tag.endKind != HtmlTag.EndKind.REQUIRED) {
                tagStack.pop();
            } else {
                boolean found = false;
                for (TagStackItem si: tagStack) {
                    if (si.tag == t) {
                        found = true;
                        break;
                    }
                }
                if (found && top.tree.getKind() == DocTree.Kind.START_ELEMENT) {
                    env.messages.error(HTML, top.tree, "dc.tag.start.unmatched",
                            ((StartElementTree) top.tree).getName());
                    tagStack.pop();
                } else {
                    env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
                    done = true;
                    break;
                }
            }
        }

        if (!done && tagStack.isEmpty()) {
            env.messages.error(HTML, tree, "dc.tag.end.unexpected", treeName);
        }
    }

    return super.visitEndElement(tree, ignore);
}