Package org.deuce.transform.asm.storage

Examples of org.deuce.transform.asm.storage.ClassDetails.update()


public class ProxyImplementation implements Opcodes{

  public static byte[] getCode(ArrayList<Object> remoteDetails, String className) {
    ClassDetails cD = new ClassDetails();
    cD.update(className);
    ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_FRAMES);
    String[] iF = {"java/rmi/Remote","java/io/Serializable"};
    cw.visit(V1_6, ACC_PUBLIC,className, null,  "java/rmi/server/UnicastRemoteObject",iF);
    ProxyImpl.addCode(remoteDetails, cw, cD);
    cw.visitEnd();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.