blob: 726f7aa96257b1a69db94212455840e0f013824e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.ui;
/**
* A filter for selecting Saveables.
* @see IWorkbench#saveAll(org.eclipse.jface.window.IShellProvider, org.eclipse.jface.operation.IRunnableContext, ISaveableFilter, boolean)
* @since 1.1
*/
public interface ISaveableFilter {
/**
* Indicate whether the given saveable matches this filter.
* @param saveable the saveable being tested
* @param containingParts the parts that contain the saveable. This list may
* contain zero or more parts.
* @return whether the given saveable matches this filter
*/
public boolean select(Saveable saveable, IWorkbenchPart[] containingParts);
}