Interface ICGenericLoop
- All Superinterfaces:
ICCompound
,ICElement
,ICGenericBreakable
,ICStatement
- All Known Subinterfaces:
ICDoWhileStm
,ICForStm
,ICGenericWhileLoop
,ICWhileStm
Super interface for C AST loops (for, do-while, while).
-
Method Summary
Modifier and TypeMethodDescriptionDeep duplication of the element.getBody()
void
void
setPredicate
(ICPredicate predicate) Methods inherited from interface com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICCompound
generateFlatList, getBlocks, insertAt, reset
Methods inherited from interface com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement
addPhysicalOffset, addPhysicalOffsets, evaluate, format, generate, getData, getElementType, getPhysicalOffset, getPhysicalOffsets, getSubElements, replaceSubElement, setData, setPhysicalOffsets, toString, visitDepthPost, visitDepthPost, visitDepthPost, visitDepthPre, visitDepthPre, visitDepthPre
Methods inherited from interface com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement
getIntermediateOffset, setIntermediateOffset
-
Method Details
-
setPredicate
-
getPredicate
ICPredicate getPredicate() -
setBody
-
getBody
ICBlock getBody() -
duplicate
ICGenericLoop duplicate()Description copied from interface:ICElement
Deep duplication of the element. Sub-elements are duplicated.Note:
ICClass
,ICMethod
,ICField
,ICIdentifier
,ICConstant
,ICType
andICLabel
are not duplicated.- Specified by:
duplicate
in interfaceICCompound
- Specified by:
duplicate
in interfaceICElement
- Specified by:
duplicate
in interfaceICGenericBreakable
- Specified by:
duplicate
in interfaceICStatement
-