Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 956f654acd47892ae07c93697f33dc9c8eb6b906 (plain) (tree)





















                                                                                
/*******************************************************************************
 * Copyright (c) 2006 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.ui.internal;

/**
 * @since 3.3
 *
 */
interface IBackgroundSaveListener {

	public void handleBackgroundSaveStarted();
	
}

Back to the top