From: adam Date: Sun, 10 Jul 2005 03:02:40 +0000 (+0000) Subject: ClassFile.addMethod(Method, int) X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=commitdiff_plain;h=f09939c1ce3e404d5d4583480cab54244f27f8ef;ds=sidebyside ClassFile.addMethod(Method, int) darcs-hash:20050710030240-5007d-2d963d64e05f1234b3ea2fe9460cf01347d6b2ee.gz --- diff --git a/src/org/ibex/classgen/ClassFile.java b/src/org/ibex/classgen/ClassFile.java index 46f5e3e..9682150 100644 --- a/src/org/ibex/classgen/ClassFile.java +++ b/src/org/ibex/classgen/ClassFile.java @@ -100,6 +100,11 @@ public class ClassFile extends Type.Class.Body { methods.addElement(mg); return mg; } + public final MethodGen addMethod(Type.Class.Method m, int flags) { + MethodGen mg = new MethodGen(m, flags); + methods.addElement(mg); + return mg; + } /** Adds a new field to this class @param name The name of the filed (not the signature, just the name)