FileDocCategorySizeDatePackage
ClassFileLoader.javaAPI DocGlassfish v2 API2801Fri May 04 22:33:24 BST 2007com.sun.enterprise.tools.verifier.apiscan.classfile

ClassFileLoader

public interface ClassFileLoader
This is loader for ClassFile similar to what ClassLoader is for class in Java.
author
Sanjeeb.Sahoo@Sun.COM

Fields Summary
Constructors Summary
Methods Summary
public ClassFileload(java.lang.String externalClassName)

param
externalClassName class name in external form. This is same as what is used in java.lang.ClassLoader.load() or Class.forName(). It is upto the implementation to decide if they want to use caching or not.
return
The {@link ClassFile} loaded.
throws
IOException if specified class could not be found.
see
ClassFile