Skip to main content
summaryrefslogtreecommitdiffstats
blob: bacd0aff14d9eb2211b0c937ada80105881a92b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.team.tests.ccvs.ui;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */

/**
 * Generic object filter mechanism.
 */
public interface ICriteria {
	/**
	 * Returns true if the candidate object satisfies the specified
	 * criteria value according to a particular algorithm.
	 */
	public boolean test(Object candidate, Object value);
}

Back to the top