W3cubDocs

/OpenJDK 25

Interface RawTextTree

All Superinterfaces:
DocTree
public interface RawTextTree extends DocTree
A tree node for a fragment of uninterpreted raw text content.

The content may contain any text except that for inline tags.

The format of the content is indicated by the kind of the tree node.

API Note:
This class may be used to represent tree nodes containing Markdown text. Such nodes will typically exist in a list of DocTree nodes, along with other kinds of DocTree nodes, such as for inline tags. When processing any such list, any non-Markdown nodes will be processed recursively first, and then treated as opaque objects within the remaining stream of Markdown nodes. Thus, the content of any non-Markdown nodes will not affect how the Markdown nodes will be processed.
Since:
23

Nested Class Summary

Nested classes/interfaces declared in interface DocTree

DocTree.Kind

Method Summary

Modifier and Type Method Description
String getContent()
Returns the content.

Methods declared in interface DocTree

accept, getKind

Method Details

getContent

String getContent()
Returns the content.
Returns:
the content

© 1993, 2025, 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/25/docs/api/jdk.compiler/com/sun/source/doctree/RawTextTree.html