Searched defs:catchClauses (Results 1 – 3 of 3) sorted by relevance
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/ |
| D | TryStmt.java | 101 private NodeList<CatchClause> catchClauses; field in TryStmt 110 …public TryStmt(final BlockStmt tryBlock, final NodeList<CatchClause> catchClauses, final BlockStmt… in TryStmt() 115 …deList<Expression> resources, final BlockStmt tryBlock, final NodeList<CatchClause> catchClauses, … in TryStmt() 123 …Range, NodeList<Expression> resources, BlockStmt tryBlock, NodeList<CatchClause> catchClauses, Blo… in TryStmt() 165 public TryStmt setCatchClauses(final NodeList<CatchClause> catchClauses) { in setCatchClauses()
|
| /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
| D | ModifierVisitor.java | 899 NodeList<CatchClause> catchClauses = modifyList(n.getCatchClauses(), arg); in visit() local
|
| D | CloneVisitor.java | 968 NodeList<CatchClause> catchClauses = cloneList(n.getCatchClauses(), arg); in visit() local
|