Interface Repository

All Known Implementing Classes:
AbstractClassPathRepository, ClassLoaderRepository, ClassPathRepository, LruCacheClassPathRepository, MemorySensitiveClassPathRepository, SyntheticRepository

public interface Repository
Abstract definition of a class repository. Instances may be used to load classes from different sources and may be used in the Repository.setRepository method.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Clears all entries from cache.
    findClass(String className)
    Finds the class with the name provided, if the class isn't there, return NULL.
    Gets the ClassPath associated with this Repository
    loadClass(Class<?> clazz)
    Finds the JavaClass instance for the given run-time class object.
    loadClass(String className)
    Finds the class with the name provided, if the class isn't there, make an attempt to load it.
    void
    Removes class from repository
    void
    Stores the provided class under "clazz.getClassName()"
  • Method Details

    • clear

      void clear()
      Clears all entries from cache.
    • findClass

      JavaClass findClass(String className)
      Finds the class with the name provided, if the class isn't there, return NULL.
    • getClassPath

      ClassPath getClassPath()
      Gets the ClassPath associated with this Repository
    • loadClass

      JavaClass loadClass(Class<?> clazz) throws ClassNotFoundException
      Finds the JavaClass instance for the given run-time class object.
      Throws:
      ClassNotFoundException - if the class can't be found.
    • loadClass

      JavaClass loadClass(String className) throws ClassNotFoundException
      Finds the class with the name provided, if the class isn't there, make an attempt to load it.
      Throws:
      ClassNotFoundException - if the class can't be found.
    • removeClass

      void removeClass(JavaClass clazz)
      Removes class from repository
    • storeClass

      void storeClass(JavaClass clazz)
      Stores the provided class under "clazz.getClassName()"