|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.android.tools.lint.checks.ControlFlowGraph.Node
public static class ControlFlowGraph.Node
A ControlFlowGraph.Node is a node in the control flow graph for a method, pointing to
the instruction and its possible successors
| Field Summary | |
|---|---|
java.util.List<ControlFlowGraph.Node> |
exceptions
Any abnormal successors (e.g. |
org.objectweb.asm.tree.AbstractInsnNode |
instruction
The instruction |
java.util.List<ControlFlowGraph.Node> |
successors
Any normal successors (e.g. |
int |
visit
A tag for use during depth-first-search iteration of the graph etc |
| Constructor Summary | |
|---|---|
ControlFlowGraph.Node(org.objectweb.asm.tree.AbstractInsnNode instruction)
Constructs a new control graph node |
|
| Method Summary | |
|---|---|
java.lang.String |
toString(boolean includeAdjacent)
Represents this instruction as a string, for debugging purposes |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public final org.objectweb.asm.tree.AbstractInsnNode instruction
public final java.util.List<ControlFlowGraph.Node> successors
public final java.util.List<ControlFlowGraph.Node> exceptions
public int visit
| Constructor Detail |
|---|
public ControlFlowGraph.Node(@NonNull
org.objectweb.asm.tree.AbstractInsnNode instruction)
instruction - the instruction to associate with this node| Method Detail |
|---|
@NonNull public java.lang.String toString(boolean includeAdjacent)
includeAdjacent - whether it should include a display of
adjacent nodes as well
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||