src/core/net/sf/basedb/util/filter/InverseFilter.java

Code
Comments
Other
Rev Date Author Line
4594 21 Oct 08 nicklas 1 /**
4594 21 Oct 08 nicklas 2   $Id$
4594 21 Oct 08 nicklas 3
4594 21 Oct 08 nicklas 4   Copyright (C) 2008 Nicklas Nordborg
4594 21 Oct 08 nicklas 5
4594 21 Oct 08 nicklas 6   This file is part of BASE - BioArray Software Environment.
4594 21 Oct 08 nicklas 7   Available at http://base.thep.lu.se/
4594 21 Oct 08 nicklas 8
4594 21 Oct 08 nicklas 9   BASE is free software; you can redistribute it and/or
4594 21 Oct 08 nicklas 10   modify it under the terms of the GNU General Public License
4594 21 Oct 08 nicklas 11   as published by the Free Software Foundation; either version 3
4594 21 Oct 08 nicklas 12   of the License, or (at your option) any later version.
4594 21 Oct 08 nicklas 13
4594 21 Oct 08 nicklas 14   BASE is distributed in the hope that it will be useful,
4594 21 Oct 08 nicklas 15   but WITHOUT ANY WARRANTY; without even the implied warranty of
4594 21 Oct 08 nicklas 16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4594 21 Oct 08 nicklas 17   GNU General Public License for more details.
4594 21 Oct 08 nicklas 18
4594 21 Oct 08 nicklas 19   You should have received a copy of the GNU General Public License
4594 21 Oct 08 nicklas 20   along with BASE. If not, see <http://www.gnu.org/licenses/>.
4594 21 Oct 08 nicklas 21 */
4594 21 Oct 08 nicklas 22 package net.sf.basedb.util.filter;
4594 21 Oct 08 nicklas 23
4594 21 Oct 08 nicklas 24 /**
4594 21 Oct 08 nicklas 25   A filter implementation that negates the result of a parent
4594 21 Oct 08 nicklas 26   filter.
4594 21 Oct 08 nicklas 27   
4594 21 Oct 08 nicklas 28   @author Nicklas
4594 21 Oct 08 nicklas 29   @version 2.9
4594 21 Oct 08 nicklas 30   @base.modified $Date$
4594 21 Oct 08 nicklas 31 */
4594 21 Oct 08 nicklas 32 public class InverseFilter<T>
4594 21 Oct 08 nicklas 33   implements Filter<T>
4594 21 Oct 08 nicklas 34 {
4594 21 Oct 08 nicklas 35   private final Filter<? super T> parent;
4594 21 Oct 08 nicklas 36   public InverseFilter(Filter<? super T> parent)
4594 21 Oct 08 nicklas 37   {
4594 21 Oct 08 nicklas 38     this.parent = parent;
4594 21 Oct 08 nicklas 39   }
4594 21 Oct 08 nicklas 40
4594 21 Oct 08 nicklas 41   /**
4594 21 Oct 08 nicklas 42     @return TRUE if the parent filter returns FALSE, and vice versa
4594 21 Oct 08 nicklas 43   */
4594 21 Oct 08 nicklas 44   @Override
4594 21 Oct 08 nicklas 45   public boolean evaluate(T object)
4594 21 Oct 08 nicklas 46   {
4594 21 Oct 08 nicklas 47     return !parent.evaluate(object);
4594 21 Oct 08 nicklas 48   }
4594 21 Oct 08 nicklas 49 }