com.sun.source.doctree.DocRootTree Java Examples

The following examples show how to use com.sun.source.doctree.DocRootTree. 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: VeryPretty.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@Override
public Void visitDocRoot(DocRootTree node, Void p) {
    print("{");
    printTagName(node);
    print("}");
    return null;
}
 
Example #2
Source File: RefactoringVisitor.java    From netbeans with Apache License 2.0 4 votes vote down vote up
/**
 * @since 1.47
 */
@Override
public DocTree visitDocRoot(DocRootTree node, Element p) {
    return docScanner.visitDocRoot(node, p, null);
}
 
Example #3
Source File: Checker.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitDocRoot(DocRootTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    return super.visitDocRoot(tree, ignore);
}
 
Example #4
Source File: Checker.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitDocRoot(DocRootTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    return super.visitDocRoot(tree, ignore);
}
 
Example #5
Source File: Checker.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitDocRoot(DocRootTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    return super.visitDocRoot(tree, ignore);
}
 
Example #6
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 visitDocRoot(DocRootTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    return super.visitDocRoot(tree, ignore);
}
 
Example #7
Source File: Checker.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitDocRoot(DocRootTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    return super.visitDocRoot(tree, ignore);
}
 
Example #8
Source File: Analyzer.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public Void visitDocRoot(DocRootTree node, List<ErrorDescription> errors) {
    return super.visitDocRoot(node, errors);
}
 
Example #9
Source File: RefactoringVisitor.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public DocTree visitDocRoot(DocRootTree node, Element p, Void ignore) {
    return super.visitDocRoot(node, p);
}
 
Example #10
Source File: RefactoringVisitor.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public DocTree visitDocRoot(DocRootTree node, Element p) {
    return instance.visitDocRoot(node, p);
}
 
Example #11
Source File: Checker.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitDocRoot(DocRootTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    return super.visitDocRoot(tree, ignore);
}
 
Example #12
Source File: TreeFactory.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public DocRootTree DocRoot() {
    return docMake.at(NOPOS).newDocRootTree();
}
 
Example #13
Source File: ImmutableDocTreeTranslator.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public DocTree visitDocRoot(DocRootTree tree, Object p) {
    return rewriteChildren(tree);
}
 
Example #14
Source File: ImmutableDocTreeTranslator.java    From netbeans with Apache License 2.0 4 votes vote down vote up
protected final DocRootTree rewriteChildren(DocRootTree tree) {
    return tree; // Nothing to do for tag without attributes
}
 
Example #15
Source File: Checker.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitDocRoot(DocRootTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    return super.visitDocRoot(tree, ignore);
}
 
Example #16
Source File: Checker.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Void visitDocRoot(DocRootTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    return super.visitDocRoot(tree, ignore);
}
 
Example #17
Source File: TreeMaker.java    From netbeans with Apache License 2.0 2 votes vote down vote up
/**Creates the DocTree's DocRootTree.
 * 
 * @return newly created DocRootTree
 * @since 0.124
 */
public DocRootTree DocRoot() {
    return delegate.DocRoot();
}
 
Example #18
Source File: DocTreeFactory.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create a new {@code DocRootTree} object, to represent an {@code {@docroot} } tag.
 * @return a {@code DocRootTree} object
 */
DocRootTree newDocRootTree();
 
Example #19
Source File: DocTreeFactory.java    From lua-for-android with BSD 3-Clause "New" or "Revised" License 2 votes vote down vote up
/**
 * Create a new {@code DocRootTree} object, to represent an {@code {@docroot} } tag.
 * @return a {@code DocRootTree} object
 */
DocRootTree newDocRootTree();