Package jadx.core.dex.visitors.regions
Class AbstractRegionVisitor
- java.lang.Object
-
- jadx.core.dex.visitors.regions.AbstractRegionVisitor
-
- All Implemented Interfaces:
IRegionVisitor
- Direct Known Subclasses:
ProcessTryCatchRegions,TernaryMod
public abstract class AbstractRegionVisitor extends java.lang.Object implements IRegionVisitor
-
-
Constructor Summary
Constructors Constructor Description AbstractRegionVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanenterRegion(MethodNode mth, IRegion region)voidleaveRegion(MethodNode mth, IRegion region)voidprocessBlock(MethodNode mth, IBlock container)
-
-
-
Method Detail
-
enterRegion
public boolean enterRegion(MethodNode mth, IRegion region)
- Specified by:
enterRegionin interfaceIRegionVisitor- Returns:
- true for traverse sub-blocks, false otherwise.
-
processBlock
public void processBlock(MethodNode mth, IBlock container)
- Specified by:
processBlockin interfaceIRegionVisitor
-
leaveRegion
public void leaveRegion(MethodNode mth, IRegion region)
- Specified by:
leaveRegionin interfaceIRegionVisitor
-
-