com.sun.source.doctree.InheritDocTree Java Examples

The following examples show how to use com.sun.source.doctree.InheritDocTree. 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: Checker.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Void visitInheritDoc(InheritDocTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    // TODO: verify on overridden method
    foundInheritDoc = true;
    return super.visitInheritDoc(tree, ignore);
}
 
Example #2
Source File: Checker.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Void visitInheritDoc(InheritDocTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    // TODO: verify on overridden method
    foundInheritDoc = true;
    return super.visitInheritDoc(tree, ignore);
}
 
Example #3
Source File: Checker.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Void visitInheritDoc(InheritDocTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    // TODO: verify on overridden method
    foundInheritDoc = true;
    return super.visitInheritDoc(tree, ignore);
}
 
Example #4
Source File: Checker.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Void visitInheritDoc(InheritDocTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    // TODO: verify on overridden method
    foundInheritDoc = true;
    return super.visitInheritDoc(tree, ignore);
}
 
Example #5
Source File: Checker.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override @DefinedBy(Api.COMPILER_TREE)
public Void visitInheritDoc(InheritDocTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    // TODO: verify on overridden method
    foundInheritDoc = true;
    return super.visitInheritDoc(tree, ignore);
}
 
Example #6
Source File: Checker.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Void visitInheritDoc(InheritDocTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    // TODO: verify on overridden method
    foundInheritDoc = true;
    return super.visitInheritDoc(tree, ignore);
}
 
Example #7
Source File: VeryPretty.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@Override
public Void visitInheritDoc(InheritDocTree node, Void p) {
    print("{");
    printTagName(node);
    print("}");
    return null;
}
 
Example #8
Source File: Checker.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Void visitInheritDoc(InheritDocTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    // TODO: verify on overridden method
    foundInheritDoc = true;
    return super.visitInheritDoc(tree, ignore);
}
 
Example #9
Source File: Checker.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Void visitInheritDoc(InheritDocTree tree, Void ignore) {
    markEnclosingTag(Flag.HAS_INLINE_TAG);
    // TODO: verify on overridden method
    foundInheritDoc = true;
    return super.visitInheritDoc(tree, ignore);
}
 
Example #10
Source File: TreeFactory.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public InheritDocTree InheritDoc() {
    return docMake.at(NOPOS).newInheritDocTree();
}
 
Example #11
Source File: RefactoringVisitor.java    From netbeans with Apache License 2.0 4 votes vote down vote up
/**
 * @since 1.47
 */
@Override
public DocTree visitInheritDoc(InheritDocTree node, Element p) {
    return docScanner.visitInheritDoc(node, p, null);
}
 
Example #12
Source File: RefactoringVisitor.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public DocTree visitInheritDoc(InheritDocTree node, Element p) {
    return instance.visitInheritDoc(node, p);
}
 
Example #13
Source File: RefactoringVisitor.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public DocTree visitInheritDoc(InheritDocTree node, Element p, Void ignore) {
    return super.visitInheritDoc(node, p);
}
 
Example #14
Source File: Analyzer.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public Void visitInheritDoc(InheritDocTree node, List<ErrorDescription> errors) {
    foundInheritDoc = true;
    return super.visitInheritDoc(node, errors);
}
 
Example #15
Source File: ImmutableDocTreeTranslator.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public DocTree visitInheritDoc(InheritDocTree tree, Object p) {
    return rewriteChildren(tree);
}
 
Example #16
Source File: ImmutableDocTreeTranslator.java    From netbeans with Apache License 2.0 4 votes vote down vote up
protected final InheritDocTree rewriteChildren(InheritDocTree tree) {
    return tree; // Nothing to do for tag without attributes
}
 
Example #17
Source File: TreeMaker.java    From netbeans with Apache License 2.0 2 votes vote down vote up
/**Creates the DocTree's InheritDocTree.
 * 
 * @return newly created InheritDocTree
 * @since 0.124
 */
public InheritDocTree InheritDoc() {
    return delegate.InheritDoc();
}
 
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 InheritDocTree} object, to represent an {@code {@inheritDoc} } tag.
 * @return an {@code InheritDocTree} object
 */
InheritDocTree newInheritDocTree();
 
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 InheritDocTree} object, to represent an {@code {@inheritDoc} } tag.
 * @return an {@code InheritDocTree} object
 */
InheritDocTree newInheritDocTree();