Package com.mebigfatguy.fbcontrib.detect
Class BuryingLogic.IfBlock
- java.lang.Object
-
- com.mebigfatguy.fbcontrib.detect.BuryingLogic.IfBlock
-
- Enclosing class:
- BuryingLogic
static class BuryingLogic.IfBlock extends java.lang.Object
represents the byte offset code range of code that is executed inside an if block
-
-
Field Summary
Fields Modifier and Type Field Description private int
end
private int
start
private BuryingLogic.IfBlocks
subBlocks
-
Constructor Summary
Constructors Constructor Description IfBlock(int s, int e)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getEnd()
int
getStart()
BuryingLogic.IfBlocks
getSubIfBlocks()
boolean
hasSubBlocks()
java.lang.String
toString()
-
-
-
Field Detail
-
start
private int start
-
end
private int end
-
subBlocks
private BuryingLogic.IfBlocks subBlocks
-
-
Method Detail
-
getStart
public int getStart()
-
getEnd
public int getEnd()
-
hasSubBlocks
public boolean hasSubBlocks()
-
getSubIfBlocks
public BuryingLogic.IfBlocks getSubIfBlocks()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-