gatk-3.8/java/src/org/broadinstitute/sting/utils/Predicate.java

14 lines
272 B
Java
Executable File

package org.broadinstitute.sting.utils;
/**
* Created by IntelliJ IDEA.
* User: depristo
* Date: Feb 24, 2009
* Time: 10:15:19 AM
* To change this template use File | Settings | File Templates.
*/
public interface Predicate<T> {
public boolean apply(T arg);
}