Package alt.jiapi.file

Examples of alt.jiapi.file.LineNumberTableAttribute


                // 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();
                       
View Full Code Here

TOP

Related Classes of alt.jiapi.file.LineNumberTableAttribute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.