Пример #1
0
 public Method createMethod(DataInputStream in, ClassFile classFile) throws IOException {
   Method m = new Method(in, classFile);
   m.initialize();
   return m;
 }
Пример #2
0
 public Method createMethod(DataInputStream in) throws IOException {
   Method m = new Method(in, this);
   m.initialize();
   return m;
 }