Package net.sf.rej.util

Examples of net.sf.rej.util.StreamByteParser


public class Disassembler {

    // TODO: Quick parse of methods/fields (without parsing the instructions)

    public static String parseName(InputStream in) {
        ByteParser parser = new StreamByteParser(in);
        parser.setBigEndian(true);
        ClassFile cf = parseBasics(parser);
        return cf.getFullClassName();
    }
View Full Code Here

TOP

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

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.