View Javadoc
1 /* 2 * Copyright (c) 2001, 2002 The XDoclet team 3 * All rights reserved. 4 */ 5 package xdoclet.util.predicates; 6 7 import org.apache.commons.collections.Predicate; 8 9 /*** 10 * Always returns false. 11 * 12 * @author <a href="aslak.hellesoy at netcom.no">Aslak Hellesøy</a> 13 */ 14 public class False implements Predicate { 15 public boolean evaluate(Object o) { 16 return false; 17 } 18 }

This page was automatically generated by Maven