org.aopalliance.reflect.UnitLocator 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 locator on a base program structural unit.
*
* A program unit represents any structural part of the program
* (i.e. any part excepting code) such as a class, a method, a
* field...
*
*
Unit locators are quite different from code locators.
*
* @see ProgramUnit
* @see ProgramUnit#getLocator()
* @see CodeLocator */
public interface UnitLocator extends Locator {
}