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; 13 14 import org.eclipse.test.performance.PerformanceMeter; 15 16 /** 17 * Null performance meter. 18 */ 19 public class NullPerformanceMeter extends PerformanceMeter { 20 21 /* 22 * @see org.eclipse.test.performance.PerformanceMeter#start() 23 */ 24 public void start() { 25 // do nothing 26 } 27 28 /* 29 * @see org.eclipse.test.performance.PerformanceMeter#stop() 30 */ 31 public void stop() { 32 // do nothing 33 } 34 35 /* 36 * @see org.eclipse.test.performance.PerformanceMeter#commit() 37 */ 38 public void commit() { 39 // do nothing 40 } 41 42 /* 43 * @see org.eclipse.test.performance.PerformanceMeter#dispose() 44 */ 45 public void dispose() { 46 // do nothing 47 } 48 } 49