本文整理匯總了Java中org.walkmod.javalang.ast.stmt.TryStmt.getFinallyBlock方法的典型用法代碼示例。如果您正苦於以下問題:Java TryStmt.getFinallyBlock方法的具體用法?Java TryStmt.getFinallyBlock怎麽用?Java TryStmt.getFinallyBlock使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.walkmod.javalang.ast.stmt.TryStmt
的用法示例。
在下文中一共展示了TryStmt.getFinallyBlock方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: visit
import org.walkmod.javalang.ast.stmt.TryStmt; //導入方法依賴的package包/類
public void visit(TryStmt n, A arg) {
List<VariableDeclarationExpr> resources = n.getResources();
if (resources != null) {
for (VariableDeclarationExpr resource : resources) {
resource.accept(this, arg);
}
}
n.getTryBlock().accept(this, arg);
if (n.getCatchs() != null) {
for (CatchClause c : n.getCatchs()) {
c.accept(this, arg);
}
}
if (n.getFinallyBlock() != null) {
n.getFinallyBlock().accept(this, arg);
}
}
示例2: visit
import org.walkmod.javalang.ast.stmt.TryStmt; //導入方法依賴的package包/類
public R visit(TryStmt n, A arg) {
n.getTryBlock().accept(this, arg);
if (n.getCatchs() != null) {
for (CatchClause c : n.getCatchs()) {
c.accept(this, arg);
}
}
if (n.getFinallyBlock() != null) {
n.getFinallyBlock().accept(this, arg);
}
return null;
}
示例3: visit
import org.walkmod.javalang.ast.stmt.TryStmt; //導入方法依賴的package包/類
@Override
public void visit(final TryStmt n, final Object arg) {
prepareComments(n);
printPreviousComments(n, arg);
printer.print("try ");
if (n.getResources() != null && !n.getResources().isEmpty()) {
printer.print("(");
Iterator<VariableDeclarationExpr> resources = n.getResources().iterator();
boolean first = true;
while (resources.hasNext()) {
VariableDeclarationExpr next = resources.next();
visit(next, arg);
if (resources.hasNext()) {
printer.print(";");
printer.printLn();
if (first) {
printer.indent();
}
}
first = false;
}
if (n.getResources().size() > 1) {
printer.unindent();
}
printer.print(") ");
}
n.getTryBlock().accept(this, arg);
if (n.getCatchs() != null) {
for (final CatchClause c : n.getCatchs()) {
c.accept(this, arg);
}
}
if (n.getFinallyBlock() != null) {
printer.print(" finally ");
n.getFinallyBlock().accept(this, arg);
}
}
示例4: visit
import org.walkmod.javalang.ast.stmt.TryStmt; //導入方法依賴的package包/類
public Node visit(TryStmt n, A arg) {
n.setTryBlock((BlockStmt) n.getTryBlock().accept(this, arg));
List<CatchClause> catchs = n.getCatchs();
if (catchs != null) {
for (int i = 0; i < catchs.size(); i++) {
catchs.set(i, (CatchClause) catchs.get(i).accept(this, arg));
}
removeNulls(catchs);
}
if (n.getFinallyBlock() != null) {
n.setFinallyBlock((BlockStmt) n.getFinallyBlock().accept(this, arg));
}
return n;
}