Package net.sf.rej.util

Examples of net.sf.rej.util.Range


      offset += 2; // size
     
        for (int i = 1; i < size(); i++) {
            ConstantPoolInfo cpi = get(i);
            int length = cpi.getData().length;
            map.put(cpi, new Range(offset, length));
            offset += length;
           
            // 2 word(8 byte) types take up 2 indices
            if (cpi.getType() == ConstantPoolInfo.LONG
               || cpi.getType() == ConstantPoolInfo.DOUBLE) {
View Full Code Here

TOP

Related Classes of net.sf.rej.util.Range

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.