org.eclipse.mylyn.internal.discovery.ui.AbstractInstallJob.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.mylyn.internal.discovery.ui.AbstractInstallJob.java

Source

/*******************************************************************************
 * Copyright (c) 2010 Tasktop Technologies 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:
 *     Tasktop Technologies - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.internal.discovery.ui;

import java.lang.reflect.InvocationTargetException;
import java.util.Set;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.jface.operation.IRunnableWithProgress;

/**
 * @author Steffen Pingel
 */
public abstract class AbstractInstallJob implements IRunnableWithProgress {

    public abstract Set<String> getInstalledFeatures(IProgressMonitor monitor);

    public abstract IStatus uninstall(UninstallRequest request, IProgressMonitor progressMonitor)
            throws InvocationTargetException, InterruptedException;

}