| Class | Description |
|---|---|
| AbstractMemoryClassLoader |
Base class to share code between our custom memory based classloader implementations.
|
| ClassData |
A simple tuple of generated class data and type information about the class.
|
| InnerClasses |
Tracks a collection of inner classes and aids in name management and calling
ClassVisitor.visitInnerClass(String, String, String, int) to ensure that they are registered
correctly. |
| JbcSrcNameGenerators |
UniqueNameGenerator implementations for java bytecode. |
| MemoryClassLoader |
A
ClassLoader that can load classes from a configured set of byte[]s. |
| SoyClassWriter |
A subclass of
ClassWriter that allows us to specialize ClassWriter.getCommonSuperClass(java.lang.String, java.lang.String) for compiler generated types as well as set common defaults for
all classwriters used by jbcsrc. |
| SoyClassWriter.Builder |