Klasse ClassLoaderRepository

java.lang.Object
org.aspectj.apache.bcel.util.ClassLoaderRepository
Alle implementierten Schnittstellen:
Repository

public class ClassLoaderRepository extends Object implements Repository
The repository maintains information about which classes have been loaded. It loads its data from the ClassLoader implementation passed into its constructor.
Version:
$Id: ClassLoaderRepository.java,v 1.13 2009/09/09 19:56:20 aclement Exp $
Autor:
M. Dahm, David Dixon-Peugh
Siehe auch:
  • Felddetails

    • useSharedCache

      public static boolean useSharedCache
    • useUnavailableClassesCache

      public static boolean useUnavailableClassesCache
    • ignoreCacheClearRequests

      public static boolean ignoreCacheClearRequests
  • Konstruktordetails

    • ClassLoaderRepository

      public ClassLoaderRepository(ClassLoader loader)
    • ClassLoaderRepository

      public ClassLoaderRepository(ClassLoaderReference loaderRef)
  • Methodendetails

    • storeClass

      public void storeClass(JavaClass clazz)
      Store a new JavaClass into this Repository.
      Angegeben von:
      storeClass in Schnittstelle Repository
    • removeClass

      public void removeClass(JavaClass clazz)
      Remove class from repository
      Angegeben von:
      removeClass in Schnittstelle Repository
    • findClass

      public JavaClass findClass(String className)
      Find an already defined JavaClass in the local cache.
      Angegeben von:
      findClass in Schnittstelle Repository
    • loadClass

      public JavaClass loadClass(String className) throws ClassNotFoundException
      Lookup a JavaClass object from the classname provided.
      Angegeben von:
      loadClass in Schnittstelle Repository
      Löst aus:
      ClassNotFoundException
    • report

      public String report()
      Produce a report on cache usage.
    • reportStats

      public long[] reportStats()
      Returns an array of the stats, for testing, the order is fixed: 0=time spent loading (static) 1=time spent manipulating URLs (static) 2=classes loaded (static) 3=cache hits shared (static) 4=misses in shared due to eviction (static) 5=cache hits local 6=misses in local due to eviction 7=shared cache size
    • reset

      public void reset()
      Reset statistics and clear all caches
    • loadClass

      public JavaClass loadClass(Class clazz) throws ClassNotFoundException
      Beschreibung aus Schnittstelle kopiert: Repository
      Find the JavaClass instance for the given run-time class object
      Angegeben von:
      loadClass in Schnittstelle Repository
      Löst aus:
      ClassNotFoundException
    • clear

      public void clear()
      Clear all entries from the local cache
      Angegeben von:
      clear in Schnittstelle Repository