177178179180181182183184185186187
// update the old methods cg.setMethods(methods); // add the proxy methods for (Iterator it2 = proxyMethods.iterator(); it2.hasNext();) { cg.addMethod((Method)it2.next()); } } } }
344345346347348349350351352353354
// update the old methods cg.setMethods(methods); // did we had to create clinit method ? if (noClInitMethod) { cg.addMethod(clInitMethod); } } } }
303304305306307308309310311312313
cg.setMethods(methods); // add the new methods for (Iterator it = newMethods.iterator(); it.hasNext();) { Method method = (Method)it.next(); cg.addMethod(method); } }//TODO CHECK THIS } /**
220221222223224225226227228229230
cg.setMethods(methods); // add the new methods for (Iterator it2 = newMethods.iterator(); it2.hasNext();) { Method method = (Method)it2.next(); cg.addMethod(method); } } } }