Package javassist.bytecode

Examples of javassist.bytecode.Bytecode.addLoad()


/* 347 */     if (isStatic) {
/* 348 */       int s = code.addLoadParameters(params, 0);
/* 349 */       code.addInvokestatic(deleClass, methodName, desc);
/*     */     }
/*     */     else {
/* 352 */       code.addLoad(0, deleClass);
/* 353 */       s = code.addLoadParameters(params, 1);
/* 354 */       code.addInvokespecial(deleClass, methodName, desc);
/*     */     }
/*     */
/* 357 */     code.addReturn(delegate.getReturnType());
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.