Methods Summary |
---|
public ByteCatchList | getCatches()Gets the list of exceptions caught and their handler targets.
return catches;
|
public int | getEnd()Gets the bytecode offset (exclusive) of the end of this block.
return end;
|
public int | getLabel()Gets the label of this block.
return label;
|
public int | getStart()Gets the bytecode offset (inclusive) of the start of this block.
return start;
|
public com.android.dx.util.IntList | getSuccessors()Gets the list of successors that this block may branch to
non-exceptionally.
return successors;
|
public java.lang.String | toString(){@inheritDoc}
return '{" + Hex.u2(label) + ": " + Hex.u2(start) + ".." +
Hex.u2(end) + '}";
|