コード例 #1
0
 public Method createMethod(DataInputStream in, ClassFile classFile) throws IOException {
   Method m = new Method(in, classFile);
   m.initialize();
   return m;
 }
コード例 #2
0
ファイル: ClassFile.java プロジェクト: cogumbreiro/x10
 public Method createMethod(DataInputStream in) throws IOException {
   Method m = new Method(in, this);
   m.initialize();
   return m;
 }