HomeSort by relevance Sort by last modified time
    Searched full:catchclause (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/metamodel/
CatchClauseMetaModel.java 8 super(superBaseNodeMetaModel, com.github.javaparser.ast.stmt.CatchClause.class, "CatchClause", "com.github.javaparser.ast.stmt", false, false);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_methodcalls_expected_output/
com_github_javaparser_ast_stmt_CatchClause.txt 1 Line 52) setParam(param) ==> com.github.javaparser.ast.stmt.CatchClause.setParam(com.github.javaparser.ast.body.Parameter)
2 Line 53) setBody(catchBlock) ==> com.github.javaparser.ast.stmt.CatchClause.setBody(com.github.javaparser.ast.stmt.BlockStmt)
3 Line 63) setParam(new Parameter(range, exceptModifier, exceptAnnotations, exceptType, null, false, exceptId)) ==> com.github.javaparser.ast.stmt.CatchClause.setParam(com.github.javaparser.ast.body.Parameter)
4 Line 64) setBody(catchBlock) ==> com.github.javaparser.ast.stmt.CatchClause.setBody(com.github.javaparser.ast.stmt.BlockStmt)
5 Line 68) v.visit(this, arg) ==> com.github.javaparser.ast.visitor.GenericVisitor.visit(com.github.javaparser.ast.stmt.CatchClause, A)
6 Line 72) v.visit(this, arg) ==> com.github.javaparser.ast.visitor.VoidVisitor.visit(com.github.javaparser.ast.stmt.CatchClause, A)
com_github_javaparser_ast_stmt_TryStmt.txt 2 Line 52) setCatchs(catchs) ==> com.github.javaparser.ast.stmt.TryStmt.setCatchs(java.util.List<com.github.javaparser.ast.stmt.CatchClause>)
6 Line 61) setCatchs(catchs) ==> com.github.javaparser.ast.stmt.TryStmt.setCatchs(java.util.List<com.github.javaparser.ast.stmt.CatchClause>)
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
CatchClause.java 44 * The catch part of a try-catch-finally. <br/>In <code>try { ... } catch (Exception e) { ... }</code> the CatchClause
49 public final class CatchClause extends Node implements NodeWithBlockStmt<CatchClause> {
55 public CatchClause() {
59 public CatchClause(final EnumSet<Modifier> exceptModifier, final NodeList<AnnotationExpr> exceptAnnotations, final ClassOrInterfaceType exceptType, final SimpleName exceptName, final BlockStmt body) {
64 public CatchClause(final Parameter parameter, final BlockStmt body) {
72 public CatchClause(TokenRange tokenRange, Parameter parameter, BlockStmt body) {
102 public CatchClause setParameter(final Parameter parameter) {
105 return (CatchClause) this;
121 public CatchClause setBody(final BlockStmt body)
    [all...]
TryStmt.java 92 * @see CatchClause
103 private NodeList<CatchClause> catchClauses;
112 public TryStmt(final BlockStmt tryBlock, final NodeList<CatchClause> catchClauses, final BlockStmt finallyBlock) {
117 public TryStmt(NodeList<Expression> resources, final BlockStmt tryBlock, final NodeList<CatchClause> catchClauses, final BlockStmt finallyBlock) {
125 public TryStmt(TokenRange tokenRange, NodeList<Expression> resources, BlockStmt tryBlock, NodeList<CatchClause> catchClauses, BlockStmt finallyBlock) {
147 public NodeList<CatchClause> getCatchClauses() {
167 public TryStmt setCatchClauses(final NodeList<CatchClause> catchClauses) {
276 catchClauses.set(i, (CatchClause) replacementNode);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
CatchClause.java 42 public final class CatchClause extends Node implements NodeWithBlockStmt<CatchClause> {
48 public CatchClause() {
51 public CatchClause(final Parameter param, final BlockStmt catchBlock) {
56 public CatchClause(final Range range,
97 public CatchClause setCatchBlock(final BlockStmt catchBlock) {
103 public CatchClause setParam(final Parameter param) {
115 public CatchClause setBody(BlockStmt block) {
TryStmt.java 42 private List<CatchClause> catchs;
49 public TryStmt(final BlockStmt tryBlock, final List<CatchClause> catchs,
57 final BlockStmt tryBlock, final List<CatchClause> catchs, final BlockStmt finallyBlock) {
75 public List<CatchClause> getCatchs() {
93 public TryStmt setCatchs(final List<CatchClause> catchs) {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
CatchClause.java 37 public final class CatchClause extends Node {
43 public CatchClause() {
46 public CatchClause(final MultiTypeParameter except, final BlockStmt catchBlock) {
51 public CatchClause(int exceptModifier, List<AnnotationExpr> exceptAnnotations, List<Type> exceptTypes, VariableDeclaratorId exceptId, BlockStmt catchBlock) {
55 public CatchClause(final int beginLine, final int beginColumn, final int endLine, final int endColumn,
TryStmt.java 39 private List<CatchClause> catchs;
46 public TryStmt(final BlockStmt tryBlock, final List<CatchClause> catchs,
55 final BlockStmt tryBlock, final List<CatchClause> catchs, final BlockStmt finallyBlock) {
73 public List<CatchClause> getCatchs() {
89 public void setCatchs(final List<CatchClause> catchs) {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/
CatchClauseContext.java 3 import com.github.javaparser.ast.stmt.CatchClause;
19 public class CatchClauseContext extends AbstractJavaParserContext<CatchClause> {
21 public CatchClauseContext(CatchClause wrappedNode, TypeSolver typeSolver) {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
JavaParserFacadeResolutionTest.java 26 import com.github.javaparser.ast.stmt.CatchClause;
158 CatchClause catchClause = Navigator.findNodeOfGivenClass(cu, CatchClause.class);
159 Type jpType = catchClause.getParameter().getType();
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/
com_github_javaparser_ast_stmt_TryStmt.txt 20 Line 74) catchs ==> java.util.List<com.github.javaparser.ast.stmt.CatchClause>
24 Line 90) this.catchs = catchs ==> java.util.List<com.github.javaparser.ast.stmt.CatchClause>
com_github_javaparser_ast_stmt_CatchClause.txt 2 [ Class com.github.javaparser.ast.stmt.CatchClause ]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/
com_github_javaparser_symbolsolver_javaparsermodel_contexts_CatchClauseContext.txt 2 Line 26) wrappedNode.getParameter() ==> com.github.javaparser.ast.stmt.CatchClause.getParameter()
8 Line 38) wrappedNode.getParameter() ==> com.github.javaparser.ast.stmt.CatchClause.getParameter()
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/chunks/
ModifierValidator.java 10 import com.github.javaparser.ast.stmt.CatchClause;
147 public void visit(CatchClause n, ProblemReporter reporter) {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/
JavaParserFactory.java 77 } else if (node instanceof CatchClause) {
78 return new CatchClauseContext((CatchClause) node, typeSolver);
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
LexicalPreservingPrinterTest.java 421 CatchClause catchClause = tryStmt.getCatchClauses().get(0);
422 Type catchType = catchClause.getParameter().getType();
433 CatchClause catchClause = tryStmt.getCatchClauses().get(0);
434 UnionType unionType = (UnionType)catchClause.getParameter().getType();
445 CatchClause catchClause = tryStmt.getCatchClauses().get(0);
446 Parameter parameter = catchClause.getParameter();
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
GenericVisitor.java 47 import com.github.javaparser.ast.stmt.CatchClause;
248 R visit(CatchClause n, A arg);
VoidVisitor.java 47 import com.github.javaparser.ast.stmt.CatchClause;
248 void visit(CatchClause n, A arg);
EqualsVisitor.java 83 import com.github.javaparser.ast.stmt.CatchClause;
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
GenericVisitor.java 50 import com.github.javaparser.ast.stmt.CatchClause;
247 public R visit(CatchClause n, A arg);
VoidVisitor.java 50 import com.github.javaparser.ast.stmt.CatchClause;
247 void visit(CatchClause n, A arg);
EqualsVisitor.java 52 import com.github.javaparser.ast.stmt.CatchClause;
    [all...]
  /tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
PsiMethodItem.kt 197 for (catchClause in tryExpression.catchClauses) {
198 for (type in catchClause.types) {
  /external/javaparser/javaparser-metamodel-generator/src/main/java/com/github/javaparser/generator/metamodel/
MetaModelGenerator.java 114 add(CatchClause.class);

Completed in 2933 milliseconds

1 2 3 4