インタフェース
com.sun.source.doctree.DocCommentTreeの使用
パッケージ | 説明 |
---|---|
com.sun.source.doctree |
ドキュメンテーション・コメントを抽象構文ツリー(AST)として表すためのインタフェースを提供します。
|
com.sun.source.util |
抽象構文ツリー(Abstract Syntax Tree、AST)の操作のためのユーティリティを提供します。
|
-
com.sun.source.doctreeでのDocCommentTreeの使用
型DocCommentTreeのパラメータを持つcom.sun.source.doctreeのメソッド 修飾子と型 メソッド 説明 R
DocTreeVisitor. visitDocComment(DocCommentTree node, P p)
DocCommentTreeノードをビジットします。 -
com.sun.source.utilでのDocCommentTreeの使用
DocCommentTreeを返すcom.sun.source.utilのメソッド 修飾子と型 メソッド 説明 DocCommentTree
DocTreePath. getDocComment()
このパスに関連付けられているDocCommentTreeを返します。abstract DocCommentTree
DocTrees. getDocCommentTree(TreePath path)
指定されたTreePathによって識別されるTreeノードのdocコメント・ツリーがあれば、それを返します。abstract DocCommentTree
DocTrees. getDocCommentTree(Element e)
指定された要素のドキュメント・コメント・ツリーを返します。abstract DocCommentTree
DocTrees. getDocCommentTree(Element e, String relativePath)
指定された要素に相対してパスが指定された、指定されたファイルのドキュメント・コメント・ツリーを返します。abstract DocCommentTree
DocTrees. getDocCommentTree(FileObject fileObject)
指定されたファイルのドキュメント・コメント・ツリーを返します。DocCommentTree
DocTreeFactory. newDocCommentTree(List<? extends DocTree> fullBody, List<? extends DocTree> tags)
完全なドキュメント・コメントを表すために、新しいDocCommentTree
オブジェクトを作成します。DocCommentTree
DocTreeFactory. newDocCommentTree(List<? extends DocTree> fullBody, List<? extends DocTree> tags, List<? extends DocTree> preamble, List<? extends DocTree> postamble)
新しいDocCommentTree
オブジェクトを作成して、enitireのドキュメント・コメントを表現します。型DocCommentTreeのパラメータを持つcom.sun.source.utilのメソッド 修飾子と型 メソッド 説明 long
DocSourcePositions. getEndPosition(CompilationUnitTree file, DocCommentTree comment, DocTree tree)
ファイル内のコメント内のツリーの終了位置を返します。static DocTreePath
DocTreePath. getPath(TreePath treePath, DocCommentTree doc, DocTree target)
コンパイル単位内のツリー・ノードのドキュメント・ツリー・パスを返します。ノードが見つからない場合はnull
を返します。long
DocSourcePositions. getStartPosition(CompilationUnitTree file, DocCommentTree comment, DocTree tree)
ファイル内のコメント内のツリーの開始位置を返します。abstract void
DocTrees. printMessage(Diagnostic.Kind kind, CharSequence msg, DocTree t, DocCommentTree c, CompilationUnitTree root)
指定されたコンパイル単位内のツリーの位置に、指定された種類のメッセージを出力しますR
DocTreeScanner. visitDocComment(DocCommentTree node, P p)
DocCommentTreeノードをビジットします。R
SimpleDocTreeVisitor. visitDocComment(DocCommentTree node, P p)
DocCommentTreeノードをビジットします。型DocCommentTreeのパラメータを持つcom.sun.source.utilのコンストラクタ コンストラクタ 説明 DocTreePath(TreePath treePath, DocCommentTree t)
ルート・ノードのDocTreePathを作成します。