// create private representation of
// line number table, so that we can update
// its offsets, when class is instrumented
lineNumberTable = new LinkedList();
LineNumberTableAttribute lnta = (LineNumberTableAttribute)ca.getAttribute(LineNumberTableAttribute.ATTRIBUTE_NAME);
if (lnta != null) {
List entries = lnta.getEntries();
Iterator i = entries.iterator();
while(i.hasNext()) {
LineNumberTableAttribute.Entry entry =
(LineNumberTableAttribute.Entry)i.next();