Package org.apache.xbean.finder.archive
Interface Archive
-
- All Superinterfaces:
java.lang.Iterable<Archive.Entry>
- All Known Implementing Classes:
AnnotationFinder.SubArchive
,ClassesArchive
,ClasspathArchive
,CompositeArchive
,FileArchive
,FilteredArchive
,JarArchive
public interface Archive extends java.lang.Iterable<Archive.Entry>
- Version:
- $Rev$ $Date$
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
Archive.Entry
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.InputStream
getBytecode(java.lang.String className)
java.lang.Class<?>
loadClass(java.lang.String className)
-
-
-
Method Detail
-
getBytecode
java.io.InputStream getBytecode(java.lang.String className) throws java.io.IOException, java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
loadClass
java.lang.Class<?> loadClass(java.lang.String className) throws java.lang.ClassNotFoundException
- Throws:
java.lang.ClassNotFoundException
-
-