Package org.eclipse.egit.ui.internal.actions

Source Code of org.eclipse.egit.ui.internal.actions.DisconnectActionHandler

/*******************************************************************************
* Copyright (C) 2007, 2014 Shawn O. Pearce <spearce@spearce.org> 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
*******************************************************************************/
package org.eclipse.egit.ui.internal.actions;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.jobs.IJobChangeEvent;
import org.eclipse.core.runtime.jobs.JobChangeAdapter;
import org.eclipse.egit.core.GitProvider;
import org.eclipse.egit.core.internal.job.JobUtil;
import org.eclipse.egit.core.op.DisconnectProviderOperation;
import org.eclipse.egit.ui.JobFamilies;
import org.eclipse.egit.ui.internal.UIText;
import org.eclipse.egit.ui.internal.decorators.GitLightweightDecorator;
import org.eclipse.team.core.RepositoryProvider;

/**
* Action to disassociate a project from its Git repository.
*
* @see DisconnectProviderOperation
*/
public class DisconnectActionHandler extends RepositoryActionHandler {
  public Object execute(ExecutionEvent event) throws ExecutionException {
    IProject[] selectedProjects = getProjectsForSelectedResources();
    List<IProject> projects = new ArrayList<IProject>(selectedProjects.length);
    for (IProject project : selectedProjects) {
      if (project.isOpen()
          && RepositoryProvider.getProvider(project) instanceof GitProvider)
        projects.add(project);
    }
    if (projects.isEmpty())
      return null;
    JobUtil.scheduleUserJob(new DisconnectProviderOperation(projects),
        UIText.Disconnect_disconnect,
        JobFamilies.DISCONNECT, new JobChangeAdapter() {
          @Override
          public void done(IJobChangeEvent actEvent) {
            GitLightweightDecorator.refresh();
          }
        });
    return null;
  }
}
TOP

Related Classes of org.eclipse.egit.ui.internal.actions.DisconnectActionHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.