blob: 50edd1a6a3796488fbfc9c868f1640e45f386d73 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.core;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.SubProgressMonitor;
/**
* This sub-progress monitor can be used to ignore progress indication for
* methods but allow cancellation.
* <p>
* This implementation supports cancelation. The default implementations of the
* other methods do nothing.
* </p>
* @see NullProgressMonitor
* @see SubProgressMonitor
*/
public class NullSubProgressMonitor extends SubProgressMonitor {
/**
* Constructor for InfiniteSubProgressMonitor.
* @param monitor
* @param ticks
*/
public NullSubProgressMonitor(IProgressMonitor monitor) {
super(monitor, 0, 0);
}
/**
* @see IProgressMonitor#beginTask(String, int)
*/
public void beginTask(String name, int totalWork) {
}
/**
* @see IProgressMonitor#done()
*/
public void done() {
}
/**
* @see IProgressMonitor#internalWorked(double)
*/
public void internalWorked(double work) {
}
/**
* @see IProgressMonitor#subTask(String)
*/
public void subTask(String name) {
}
/**
* @see IProgressMonitor#worked(int)
*/
public void worked(int work) {
}
}