Uses of Interface
com.sun.source.doctree.ThrowsTree
-
Packages that use ThrowsTree 软件包 描述 com.sun.source.doctree 提供用于将文档注释表示为抽象语法树(AST)的接口。com.sun.source.util 为抽象语法树(AST)的操作提供实用程序。 -
-
Uses of ThrowsTree in com.sun.source.doctree
Methods in com.sun.source.doctree with parameters of type ThrowsTree Modifier and Type 方法 描述 R
DocTreeVisitor. visitThrows(ThrowsTree node, P p)
访问ThrowsTree节点。 -
Uses of ThrowsTree in com.sun.source.util
Methods in com.sun.source.util that return ThrowsTree Modifier and Type 方法 描述 ThrowsTree
DocTreeFactory. newExceptionTree(ReferenceTree name, List<? extends DocTree> description)
创建一个新的ExceptionTree
对象,以表示一个@exception
标签。ThrowsTree
DocTreeFactory. newThrowsTree(ReferenceTree name, List<? extends DocTree> description)
创建一个新的ThrowsTree
对象,以表示一个@throws
标签。Methods in com.sun.source.util with parameters of type ThrowsTree Modifier and Type 方法 描述 R
DocTreeScanner. visitThrows(ThrowsTree node, P p)
访问ThrowsTree节点。R
SimpleDocTreeVisitor. visitThrows(ThrowsTree node, P p)
Visits a ThrowsTree node.
-