Searched defs:InstructionHandle (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionHandle.java71 * Within an InstructionList an InstructionHandle object is wrapped
83 public class InstructionHandle implements java.io.Serializable { class in inherits:java.io.Serializable
84 InstructionHandle next, prev; // Will be set from the outside
90 public final InstructionHandle getNext() { return next; }
91 public final InstructionHandle getPrev() { return prev; }
122 /*private*/ protected InstructionHandle(Instruction i) { method in class:InstructionHandle
126 private static InstructionHandle ih_list = null; // List of reusable handles
130 static final InstructionHandle getInstructionHandle(Instruction i) {
132 return new InstructionHandle(i);
134 InstructionHandle i
[all...]

Completed in 30 milliseconds