org.aopalliance.reflect.ClassLocator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
package org.aopalliance.reflect;
/**
* This interface represents a specific unit locator for base program
* classes.
*
* For instance, this locator can represent a given class, or a
* given classes set (e.g. all the classes of a given package or all
* the classes that implement a given interface).
*
* @see ProgramUnit#getLocator()
* @see Class#getClassLocator() */
public interface ClassLocator extends UnitLocator {
}