Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 204515d5cab6ccacc1a668fb505325d6bf4d3615 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                                
                                                  








                                                                                
                                             

   


                                                             
   




                                    



                                  
                                                          
         
 
/*******************************************************************************
 * Copyright (c) 2012 Oracle. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0, which accompanies this distribution
 * and is available at http://www.eclipse.org/legal/epl-v10.html.
 * 
 * Contributors:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.common.utility.internal;

import org.eclipse.jpt.common.utility.Filter;

/**
 * Convenience filter implementation that accepts everything.
 * 
 * @see org.eclipse.jpt.common.utility.Filter.Transparent
 */
public class FilterAdapter<T>
	implements Filter<T>
{
	public boolean accept(T o) {
		return true;
	}

	@Override
	public String toString() {
		return StringTools.buildToStringFor(this);
	}
}

Back to the top