import org.apache.commons.functor.Procedure;
import org.apache.commons.functor.core.algorithm.WhileDo;
public class CommonsFunctorExample {
public static void main(final String[] args) {
Predicate predicate = new Predicate() {
public boolean test() {
return true;
}
};
Procedure procedure = new Procedure() {