Package jadx.core.dex.nodes
Interface IRegion
-
- All Superinterfaces:
IAttributeNode,IContainer
- All Known Subinterfaces:
IBranchRegion,IConditionRegion
- All Known Implementing Classes:
AbstractRegion,ConditionRegion,IfRegion,LoopRegion,Region,SwitchRegion,SynchronizedRegion,TryCatchRegion
public interface IRegion extends IContainer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IRegiongetParent()java.util.List<IContainer>getSubBlocks()booleanreplaceSubBlock(IContainer oldBlock, IContainer newBlock)voidsetParent(IRegion parent)-
Methods inherited from interface jadx.core.dex.attributes.IAttributeNode
add, addAttr, addAttr, addAttrs, clearAttributes, contains, contains, copyAttributeFrom, copyAttributesFrom, get, getAll, getAnnotation, getAttributesString, getAttributesStringsList, isAttrStorageEmpty, remove, remove, removeAttr, rewriteAttributeFrom
-
Methods inherited from interface jadx.core.dex.nodes.IContainer
baseString, generate
-
-
-
-
Method Detail
-
getParent
IRegion getParent()
-
setParent
void setParent(IRegion parent)
-
getSubBlocks
java.util.List<IContainer> getSubBlocks()
-
replaceSubBlock
boolean replaceSubBlock(IContainer oldBlock, IContainer newBlock)
-
-