org.objectweb.asm.util.ASMifier#main ( )源码实例Demo

下面列出了org.objectweb.asm.util.ASMifier#main ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: groovy   文件: JO.java
public static void main(String[] args) throws Exception {
        ASMifier.main(new String[]{"target/classes/groovy/swing/SwingBuilder.class"});
//        ASMifierClassVisitor.main(new String[]{"target/classes/org/codehaus/groovy/runtime/callsite/PogoMetaMethodSite.class"});
//        ASMifierClassVisitor.main(new String[]{"target/test-classes/spectralnorm.class"});
//        ASMifierClassVisitor.main(new String[]{"target/test-classes/groovy/bugs/CustomMetaClassTest.class"});
    }
 
源代码2 项目: attic-polygene-java   文件: ASMTest.java
@Test
public void generateASM()
    throws Exception
{
    ASMifier.main( new String[]{ SomeMixin_Stubx.class.getName() } );
}
 
源代码3 项目: beetl2.0   文件: ASMSource.java
/**
 * @param args
 */
public static void main(String[] args) throws Exception {
	// TODO Auto-generated method stub
	ASMifier.main(new String[] { "org.beetl.performance.lab.asm.PrivateTestGet" });

}
 
源代码4 项目: beetl2.0   文件: ASMSource.java
/**
 * @param args
 */
public static void main(String[] args) throws Exception {
	// TODO Auto-generated method stub
	ASMifier.main(new String[] { "com.beetl.performance.lab.asm.field.UserIdFiledAccess" });

}
 
源代码5 项目: beetl2.0   文件: ASMSource.java
/**
 * @param args
 */
public static void main(String[] args) throws Exception {
	// TODO Auto-generated method stub
	ASMifier.main(new String[] { "org.beetl.performance.lab.asm.PrivateTestGet" });

}
 
源代码6 项目: beetl2.0   文件: ASMSource.java
/**
 * @param args
 */
public static void main(String[] args) throws Exception {
	// TODO Auto-generated method stub
	ASMifier.main(new String[] { "com.beetl.performance.lab.asm.field.UserIdFiledAccess" });

}
 
 同类方法