Package weasel.interpreter.io.WeaselClassFile

Examples of weasel.interpreter.io.WeaselClassFile.WeaselMethod


    }
    return methods;
  }
 
  private WeaselMethod readMethod(DataInputStream dataInputStream) throws IOException {
    WeaselMethod method = new WeaselMethod();
    method.name = readString(dataInputStream);
    method.returnType = readClass(dataInputStream);
    method.params = readTypeParams(dataInputStream);
    method.throwClasses = readSuperClasses(dataInputStream);
    method.byteCodes = readByteCodes(dataInputStream);
View Full Code Here

TOP

Related Classes of weasel.interpreter.io.WeaselClassFile.WeaselMethod

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.