KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > test > internal > performance > eval > EmptyEvaluator


1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11
12 package org.eclipse.test.internal.performance.eval;
13
14 import org.eclipse.test.performance.PerformanceMeter;
15
16 /**
17  * The empty evaluator. Does nothing.
18  */

19 public class EmptyEvaluator implements IEvaluator {
20
21     /*
22      * @see org.eclipse.test.internal.performance.eval.IEvaluator#evaluate(org.eclipse.jdt.ui.tests.performance.PerformanceMeter)
23      */

24     public void evaluate(PerformanceMeter performanceMeter) throws RuntimeException JavaDoc {
25         // empty
26
}
27
28     /*
29      * @see org.eclipse.test.internal.performance.eval.IEvaluator#setAssertCheckers(org.eclipse.test.internal.performance.eval.AssertChecker[])
30      */

31     public void setAssertCheckers(AssertChecker[] asserts) {
32         // empty
33
}
34
35     /*
36      * @see org.eclipse.test.internal.performance.eval.IEvaluator#setReferenceFilterProperties(java.lang.String, java.lang.String)
37      */

38     public void setReferenceFilterProperties(String JavaDoc driver, String JavaDoc timestamp) {
39         // empty
40
}
41 }
42
Popular Tags