// If the offset is 0, ClassRefForms refer to
// the current class. Add that as the nested class.
// (This is true for all bc_classref forms in
// the spec except for multianewarray, which has
// its own form.)
final SegmentConstantPool globalPool = operandManager
.globalConstantPool();
ClassFileEntry[] nested = null;
// How do I get this class?
nested = new ClassFileEntry[] { globalPool
.getClassPoolEntry(operandManager.getCurrentClass()) };
byteCode.setNested(nested);
byteCode.setNestedPositions(new int[][] { { 0, 2 } });
}