Open Source Repository

Home /hibernate/hibernate-3.2.6.ga | Repository Home



org/hibernate/bytecode/util/ClassFilter.java
package org.hibernate.bytecode.util;

/**
 * Used to determine whether a class should be instrumented.
 *
 @author Steve Ebersole
 */
public interface ClassFilter {
    public boolean shouldInstrumentClass(String className);
}