public final class TryStatementImpl extends Object implements TryStatement
TryStatement
.Constructor and Description |
---|
TryStatementImpl() |
Modifier and Type | Method and Description |
---|---|
<R,C,E extends Throwable> |
accept(Visitor<R,C,E> visitor,
C context)
Accepts the
Visitor and processes this object in the visitor. |
boolean |
equals(Object obj)
Returns whether this object is equivalent to the specified object or not.
|
<T> T |
findModelTrait(Class<T> traitClass)
Returns a model trait for the specified type.
|
List<? extends CatchClause> |
getCatchClauses()
Returns the
catch clauses. |
Block |
getFinallyBlock()
Returns the body block of
finally clause. |
ModelKind |
getModelKind()
Returns
ModelKind.TRY_STATEMENT which represents this element kind. |
List<? extends TryResource> |
getResources()
Returns the resource statements.
|
Block |
getTryBlock()
Returns the body block of
try clause. |
int |
hashCode()
Returns the hash code of this model object.
|
<T> void |
putModelTrait(Class<T> traitClass,
T traitObject)
Puts a model trait.
|
void |
setCatchClauses(List<? extends CatchClause> catchClauses)
Sets the
catch clauses. |
void |
setFinallyBlock(Block finallyBlock)
Sets the body block of
finally clause. |
void |
setResources(List<? extends TryResource> resources)
Sets the resources.
|
void |
setTryBlock(Block tryBlock)
Sets the body block of
try clause. |
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
equals, findModelTrait, hashCode, putModelTrait
public List<? extends TryResource> getResources()
TryStatement
getResources
in interface TryStatement
public void setResources(List<? extends TryResource> resources)
resources
- the resourcespublic Block getTryBlock()
TryStatement
try
clause.getTryBlock
in interface TryStatement
try
clausepublic void setTryBlock(Block tryBlock)
try
clause.tryBlock
- the body block of try
clauseIllegalArgumentException
- if tryBlock
was null
public List<? extends CatchClause> getCatchClauses()
TryStatement
catch
clauses.getCatchClauses
in interface TryStatement
catch
clauses, or an empty list if there is no cache clausespublic void setCatchClauses(List<? extends CatchClause> catchClauses)
catch
clauses.catchClauses
- the catch
clausesIllegalArgumentException
- if catchClauses
was null
public Block getFinallyBlock()
TryStatement
finally
clause.getFinallyBlock
in interface TryStatement
finally
clause, or null
if it is not specifiedpublic void setFinallyBlock(Block finallyBlock)
finally
clause.finallyBlock
- the body block of finally
clause, or null
if it is not specifiedpublic ModelKind getModelKind()
ModelKind.TRY_STATEMENT
which represents this element kind.getModelKind
in interface Model
ModelKind.TRY_STATEMENT
public <R,C,E extends Throwable> R accept(Visitor<R,C,E> visitor, C context) throws E extends Throwable
Model
Visitor
and processes this object in the visitor.accept
in interface Model
R
- type of visitor resultC
- type of visitor contextE
- type of visitor exceptionvisitor
- the target visitorcontext
- the current context (nullable)E
- if error occurred while processing this object in the visitorE extends Throwable
public <T> T findModelTrait(Class<T> traitClass)
Model
findModelTrait
in interface Model
T
- the trait typetraitClass
- the trait typenull
if there is no such a traitpublic <T> void putModelTrait(Class<T> traitClass, T traitObject)
Model
putModelTrait
in interface Model
T
- the trait typetraitClass
- the trait typetraitObject
- the trait object, or null
to remove the target traitpublic int hashCode()
Model
traits
does not have any effects to the hash code.public boolean equals(Object obj)
Model
traits
does not have any effects to the equivalence.Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.