1 package jfun.yan.etc;2 3 /**4 * A predicate against named property.5 * <p>6 * @author Ben Yu7 * Jan 18, 2006 9:23:12 PM8 */9 public interface PropertyPredicate {10 boolean isProperty(Class type, Object key, Class property_type);11 }12