Files
ebean/src/main/java/com/avaje/ebeaninternal/server/util/ClassPathSearchMatcher.java
T

17 lines
400 B
Java

package com.avaje.ebeaninternal.server.util;
/**
* Defines interface for finding classes via a class path search.
*/
public interface ClassPathSearchMatcher {
/**
* Return true if the class matches the specific search.
* <p>
* Note that the location in terms of jars and packages is noted and can be
* used to make future searches faster.
* </p>
*/
boolean isMatch(Class<?> cls);
}