public interface

ICWhileStm

implements ICGenericWhileLoop
com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICWhileStm

Class Overview

C AST interface to represent while loop statements. A while loop is a pre-tested loop, that consists of a test predicate and a body.

 while(predicate) {
     // body
 }
 

Summary

Public Methods
abstract ICWhileStm duplicate()
Deep duplication of the element.
[Expand]
Inherited Methods
From interface com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICCompound
From interface com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement
From interface com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICGenericBreakable
From interface com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICGenericLoop
From interface com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICGenericWhileLoop
From interface com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement

Public Methods

public abstract ICWhileStm duplicate ()

Deep duplication of the element. Sub-elements are duplicated.

Note: ICClass, ICMethod, ICField, ICIdentifier, ICConstant, ICType and ICLabel are not duplicated.