Interface Loader
-
- All Known Implementing Classes:
BytecoderLoader
public interface Loader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.net.URL
getResource(java.lang.String resourceName)
java.util.Enumeration<java.net.URL>
getResources(java.lang.String resourceName)
org.objectweb.asm.tree.ClassNode
loadClassFor(org.objectweb.asm.Type type)
-
-
-
Method Detail
-
loadClassFor
org.objectweb.asm.tree.ClassNode loadClassFor(org.objectweb.asm.Type type) throws java.io.IOException, java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
getResources
java.util.Enumeration<java.net.URL> getResources(java.lang.String resourceName) throws java.io.IOException
- Throws:
java.io.IOException
-
getResource
java.net.URL getResource(java.lang.String resourceName)
-
-