Uses of Class
org.jboss.byteman.agent.adapter.cfg.TryCatchDetails
-
Packages that use TryCatchDetails Package Description org.jboss.byteman.agent.adapter.cfg -
-
Uses of TryCatchDetails in org.jboss.byteman.agent.adapter.cfg
Methods in org.jboss.byteman.agent.adapter.cfg that return types with arguments of type TryCatchDetails Modifier and Type Method Description List<TryCatchDetails>
BBlock. getActiveTryStarts()
retrieve details of all try catch blocks which are capable of generating an exception in this blockIterator<TryCatchDetails>
BBlock. getHandlerStarts()
retrieve details of all try catch block handlers whcih start in this blockList<TryCatchDetails>
TryCatchDetails. getShadowRegions()
Iterator<TryCatchDetails>
BBlock. getTryEnds()
retrieve details of all try catch blocks which end in this blockList<TryCatchDetails>
CFG. tryCatchEndDetails(org.objectweb.asm.Label label)
return the list of details of try catch blocks which end at this labelList<TryCatchDetails>
CFG. tryCatchHandlerStartDetails(org.objectweb.asm.Label label)
return the list of details of try catch blocks whose handler starts at this labelList<TryCatchDetails>
CFG. tryCatchStartDetails(org.objectweb.asm.Label label)
return the list of details of try catch blocks which start at this labelMethods in org.jboss.byteman.agent.adapter.cfg with parameters of type TryCatchDetails Modifier and Type Method Description void
TryCatchDetails. addShadowRegion(TryCatchDetails tryCatchDetails)
add a shadowing region to the list of regions which shadow this oneboolean
TryCatchDetails. hasShadowRegion(TryCatchDetails tryCatchDetails)
Method parameters in org.jboss.byteman.agent.adapter.cfg with type arguments of type TryCatchDetails Modifier and Type Method Description void
BBlock. addHandlerStarts(List<TryCatchDetails> details)
record details of a try catch block handler which starts in this blockvoid
BBlock. addTryEnds(List<TryCatchDetails> details)
record details of a try catch block which ends in this blockvoid
BBlock. addTryStarts(List<TryCatchDetails> details)
record details of a try catch block which starts in this blockvoid
BBlock. setActiveTryStarts(List<TryCatchDetails> active)
set the list of try starts which are active somewhere in this block.
-