blob: 59568b37d75c6bf254d70e03c3bf9082fcfaad4d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.jdt.ui.jarpackager;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.jface.operation.IRunnableWithProgress;
/**
* A runnable which executes a JAR export operation within the workspace.
*
* Clients may implement this interface.
*
* @see org.eclipse.jdt.ui.jarpackager.JarPackageData#createJarExportRunnable(org.eclipse.swt.widgets.Shell)
* @see org.eclipse.core.resources.IWorkspaceRunnable
* @since 2.0
*/
public interface IJarExportRunnable extends IRunnableWithProgress {
/**
* Returns the current status of this operation.
* The result is a status object which may contain individual
* nested status objects.
* <p>
* Clients may call this method during the operation and add
* additional status information.
* </p>
*
* @return the status of this operation
*/
public IStatus getStatus();
}