soot.jimple.internal
Class AbstractDefinitionStmt

java.lang.Object
  |
  +--soot.tagkit.AbstractHost
        |
        +--soot.AbstractUnit
              |
              +--soot.jimple.internal.AbstractStmt
                    |
                    +--soot.jimple.internal.AbstractDefinitionStmt
Direct Known Subclasses:
JAssignStmt, JIdentityStmt

public abstract class AbstractDefinitionStmt
extends AbstractStmt
implements DefinitionStmt

See Also:
Serialized Form

Fields inherited from class soot.AbstractUnit
emptyList
 
Constructor Summary
AbstractDefinitionStmt()
           
 
Method Summary
 boolean branches()
          Returns true if execution after this statement does not necessarily continue at the following statement.
 boolean fallsThrough()
          Returns true if execution after this statement may continue at the following statement.
 java.util.List getDefBoxes()
          Returns a list of Boxes containing Values defined in this Unit.
 Value getLeftOp()
           
 ValueBox getLeftOpBox()
           
 Value getRightOp()
           
 ValueBox getRightOpBox()
           
 java.util.List getUseBoxes()
          Returns a list of Boxes containing Values used in this Unit.
 
Methods inherited from class soot.jimple.internal.AbstractStmt
containsArrayRef, containsFieldRef, containsInvokeExpr, convertToBaf, getArrayRef, getArrayRefBox, getFieldRef, getFieldRefBox, getInvokeExpr, getInvokeExprBox
 
Methods inherited from class soot.AbstractUnit
addBoxPointingToThis, apply, clearUnitBoxes, clone, getBoxesPointingToThis, getUnitBoxes, getUseAndDefBoxes, redirectJumpsToThisTo, removeBoxPointingToThis
 
Methods inherited from class soot.tagkit.AbstractHost
addAllTagsOf, addTag, getTag, getTags, hasTag, removeAllTags, removeTag
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractDefinitionStmt

public AbstractDefinitionStmt()
Method Detail

getLeftOp

public Value getLeftOp()
Specified by:
getLeftOp in interface DefinitionStmt

getRightOp

public Value getRightOp()
Specified by:
getRightOp in interface DefinitionStmt

getLeftOpBox

public ValueBox getLeftOpBox()
Specified by:
getLeftOpBox in interface DefinitionStmt

getRightOpBox

public ValueBox getRightOpBox()
Specified by:
getRightOpBox in interface DefinitionStmt

getDefBoxes

public java.util.List getDefBoxes()
Description copied from interface: Unit
Returns a list of Boxes containing Values defined in this Unit.
Overrides:
getDefBoxes in class AbstractUnit

getUseBoxes

public java.util.List getUseBoxes()
Description copied from interface: Unit
Returns a list of Boxes containing Values used in this Unit.
Overrides:
getUseBoxes in class AbstractUnit

fallsThrough

public boolean fallsThrough()
Description copied from interface: Unit
Returns true if execution after this statement may continue at the following statement. GotoStmt will return false but IfStmt will return true.

branches

public boolean branches()
Description copied from interface: Unit
Returns true if execution after this statement does not necessarily continue at the following statement. GotoStmt and IfStmt will both return true.