nz.net.juju.jaune
Class ClassCompiler

java.lang.Object
  |
  +--nz.net.juju.jaune.ClassCompiler

public class ClassCompiler
extends java.lang.Object

The ClassCompiler is the main entry point for converting .class files into assembly. It takes a string name of the class to compile, and returns a CompiledClass that then may be printed to a file.


Constructor Summary
ClassCompiler()
           
 
Method Summary
static CompiledClass compile(java.lang.String classFile)
          Compile the given class, returning the compiled form.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClassCompiler

public ClassCompiler()
Method Detail

compile

public static CompiledClass compile(java.lang.String classFile)
                             throws java.lang.Exception
Compile the given class, returning the compiled form. classFile may be in foo/bar.class or foo.bar format.