blob: b35ec58ccabbac2605022ce0880fd8e763b95558 [file] [log] [blame]
/*
* Copyright (c) 2000, 2003 IBM Corp. All rights reserved.
* This file is 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
*/
package org.eclipse.compare.internal;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.CoreException;
public interface ISavable {
void save(IProgressMonitor pm) throws CoreException;
}