Package javassist.convert

Examples of javassist.convert.TransformCall


/* 359 */     if ((Modifier.isStatic(mod1) != Modifier.isStatic(mod2)) || ((Modifier.isPrivate(mod1)) && (!Modifier.isPrivate(mod2))) || (origMethod.getDeclaringClass().isInterface() != substMethod.getDeclaringClass().isInterface()))
/*     */     {
/* 363 */       throw new CannotCompileException("invoke-type mismatch " + substMethod.getLongName());
/*     */     }
/*     */
/* 366 */     this.transformers = new TransformCall(this.transformers, origMethod, substMethod);
/*     */   }
View Full Code Here


/*     */   }
/*     */
/*     */   public void redirectMethodCall(String oldMethodName, CtMethod newMethod)
/*     */     throws CannotCompileException
/*     */   {
/* 391 */     this.transformers = new TransformCall(this.transformers, oldMethodName, newMethod);
/*     */   }
View Full Code Here

TOP

Related Classes of javassist.convert.TransformCall

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.