blob: 41410d48c5a047367a0d4c96de01cb886598fe7e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 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.team.ui;
import org.eclipse.compare.CompareEditorInput;
import org.eclipse.compare.CompareUI;
import org.eclipse.ui.ISaveablePart;
import org.eclipse.ui.IWorkbenchPart;
/**
* A saveable workbench part is a visual component that can be shown within
* different contexts (e.g a dialog, workbench page).
*
* @see SaveablePartDialog
* @since 3.0
* @deprecated Clients should use a subclass of {@link CompareEditorInput}
* and {@link CompareUI#openCompareDialog(org.eclipse.compare.CompareEditorInput)}
*/
@Deprecated
public interface ISaveableWorkbenchPart extends ISaveablePart, IWorkbenchPart {
/**
* The property id for <code>isDirty</code>.
*/
public static final int PROP_DIRTY = ISaveablePart.PROP_DIRTY;
}