Package | Description |
---|---|
com.asakusafw.utils.java.internal.model.syntax |
Naive Java DOM implementations.
|
com.asakusafw.utils.java.internal.model.util |
Internal utlities for Java DOM building/emitting.
|
com.asakusafw.utils.java.model.syntax |
Interfaces for representing Java DOMs.
|
Modifier and Type | Class and Description |
---|---|
class |
CatchClauseImpl
An implementation of
CatchClause . |
Modifier and Type | Method and Description |
---|---|
CatchClause |
ModelFactoryImpl.newCatchClause(FormalParameterDeclaration parameter,
Block body) |
Modifier and Type | Method and Description |
---|---|
List<? extends CatchClause> |
TryStatementImpl.getCatchClauses() |
Modifier and Type | Method and Description |
---|---|
TryStatement |
ModelFactoryImpl.newTryStatement(List<? extends TryResource> resources,
Block tryBlock,
List<? extends CatchClause> catchClauses,
Block finallyBlock) |
void |
TryStatementImpl.setCatchClauses(List<? extends CatchClause> catchClauses)
Sets the
catch clauses. |
Modifier and Type | Method and Description |
---|---|
Void |
ModelDigester.visitCatchClause(CatchClause elem,
com.asakusafw.utils.java.internal.model.util.DigestContext context) |
Boolean |
ModelMatcher.visitCatchClause(CatchClause elem,
Model context) |
Modifier and Type | Method and Description |
---|---|
CatchClause |
ModelFactory.newCatchClause(FormalParameterDeclaration parameter,
Block body)
Returns a new
CatchClause object. |
default CatchClause |
ModelFactory.newCatchClause(Type type,
SimpleName name,
Function<? super SimpleName,? extends Block> body)
Returns a new
CatchClause object. |
Modifier and Type | Method and Description |
---|---|
List<? extends CatchClause> |
TryStatement.getCatchClauses()
Returns the
catch clauses. |
Modifier and Type | Method and Description |
---|---|
R |
StrictVisitor.visitCatchClause(CatchClause elem,
C context) |
R |
Visitor.visitCatchClause(CatchClause elem,
C context)
Processes
CatchClause using this visitor. |
Modifier and Type | Method and Description |
---|---|
default TryStatement |
ModelFactory.newTryStatement(Block tryBlock,
List<? extends CatchClause> catchClauses)
Returns a new
TryStatement object. |
default TryStatement |
ModelFactory.newTryStatement(Block tryBlock,
List<? extends CatchClause> catchClauses,
Block finallyBlock)
Returns a new
TryStatement object. |
default TryStatement |
ModelFactory.newTryStatement(List<? extends TryResource> resources,
Block tryBlock,
List<? extends CatchClause> catchClauses)
Returns a new
TryStatement object. |
TryStatement |
ModelFactory.newTryStatement(List<? extends TryResource> resources,
Block tryBlock,
List<? extends CatchClause> catchClauses,
Block finallyBlock)
Returns a new
TryStatement object. |
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.