net.groboclown.util.classes.v1.jdk0
Interface BytecodeSource

All Known Implementing Classes:
UrlClassLoader, UrlClassLoader.BytecodeSourceCache, TestArrayClassLoader.NullBytecodeSource

public interface BytecodeSource

Load classes by byte Arrays. JDK 1.0+ compatible.

Version:
Alpha 1.0
Author:
Matt Albrecht

Method Summary
 byte[] getBytecode(String classname)
          Loads the bytecode for the given classname.
 

Method Detail

getBytecode

public byte[] getBytecode(String classname)
Loads the bytecode for the given classname.
Parameters:
classname - the name of the class to find.
Returns:
null if there was an error finding the class, or the bytecode for the given class.


Written under the LGPL