Package jadx.core.dex.nodes
Interface IBranchRegion
-
- All Superinterfaces:
IAttributeNode,IContainer,IRegion
- All Known Implementing Classes:
IfRegion,SwitchRegion,TryCatchRegion
public interface IBranchRegion extends IRegion
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<IContainer>getBranches()Return list of branches in this region.-
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
-
Methods inherited from interface jadx.core.dex.nodes.IRegion
getParent, getSubBlocks, replaceSubBlock, setParent
-
-
-
-
Method Detail
-
getBranches
java.util.List<IContainer> getBranches()
Return list of branches in this region. NOTE: Contains 'null' elements for indicate empty branches.
-
-