01: package org.uispec4j.extension;
02:
03: import org.objectweb.asm.util.ASMifierClassVisitor;
04: import org.uispec4j.Panel;
05:
06: /**
07: * Shortcut for dumping the ASM definition of a given class
08: */
09: public class Asmifier {
10:
11: public static void main(String[] args) throws Exception {
12: ASMifierClassVisitor
13: .main(new String[] { Panel.class.getName() });
14: }
15: }
|