(String[] args)
| 42 | } |
| 43 | |
| 44 | public static void main(String[] args) { |
| 45 | String mName = "hello"; |
| 46 | String mContext = "public void hello(){}"; |
| 47 | try { |
| 48 | TMethod tMethod = new TMethod(); |
| 49 | CtClass clzz = tMethod.genMethod(mName,mContext); |
| 50 | clzz.writeFile("datas"); |
| 51 | } catch (NotFoundException | CannotCompileException | IOException e) { |
| 52 | e.printStackTrace(); |
| 53 | } |
| 54 | } |
| 55 | } |