DocTree, InlineTagTree
public interface SnippetTree extends InlineTagTree
@snippet inline tag. 
    {@snippet :
     body
    }
    {@snippet attributes}
    {@snippet attributes :
     body
    }
 
DocTree.Kind
| Modifier and Type | Method | Description | 
|---|---|---|
| List | getAttributes() | Returns the list of the attributes of the  @snippettag. | 
| TextTree | getBody() | Returns the body of the  @snippettag, ornullif there is no body. | 
getTagName
List<? extends DocTree> getAttributes()
@snippet tag.TextTree getBody()
@snippet tag, or null if there is no body.SnippetTree with an empty body differs from an instance of SnippetTree with no body. If a tag has no body, then calling this method returns null. If a tag has an empty body, then this method returns a TextTree whose TextTree.getBody() returns an empty string.null if there is no body
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/jdk.compiler/com/sun/source/doctree/SnippetTree.html