1 /*
2 * Copyright (c) 2002-2003 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 true.
11 *
12 * @author <a href="aslak.hellesoy at netcom.no">Aslak Hellesøy</a>
13 */
14 public class True implements Predicate {
15 public boolean evaluate(Object o) {
16 return true;
17 }
18 }
This page was automatically generated by Maven