blob: 56a01518b623387cb24c759dbe161d6023815232 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.model;
import org.eclipse.core.runtime.IProgressMonitor;
public class TestProgressMonitor implements IProgressMonitor {
private static TestProgressMonitor singleton = new TestProgressMonitor();
public int isCanceledCounter;
/**
* @see IProgressMonitor#beginTask
*/
public void beginTask(String name, int totalWork) {
}
/**
* @see IProgressMonitor#done
*/
public void done() {
}
public static TestProgressMonitor getInstance() {
return singleton;
}
public void internalWorked(double work) {
}
/**
* @see IProgressMonitor#isCanceled
*/
public boolean isCanceled() {
return --this.isCanceledCounter < 0;
}
public void reset() {
}
/**
* @see IProgressMonitor#setCanceled
*/
public void setCanceled(boolean b) {
}
/*
* Sets the number of time isCanceled() can be called before it returns true.
*/
public void setCancelledCounter(int counter) {
this.isCanceledCounter = counter;
}
/**
* @see IProgressMonitor#setTaskName
*/
public void setTaskName(String name) {
}
/**
* @see IProgressMonitor#subTask
*/
public void subTask(String name) {
}
/**
* @see IProgressMonitor#worked
*/
public void worked(int work) {
}
}