Filter.java :  » JBoss » gravel-1.0.2.GA » org » jboss » gravel » Java Open Source

Java Open Source » JBoss » gravel 1.0.2.GA 
gravel 1.0.2.GA » org » jboss » gravel » Filter.java
package org.jboss.gravel;

/**
 * A collection filter.  Used to filter a data set into a smaller dataset.
 */
public interface Filter {
    /**
     * Test to see if an item passes the filter.
     *
     * @param entry the item to test
     * @return {@code true} if the item passes the filter criteria
     */
    boolean testEntry(Object entry);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.