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

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

/*******************************************************************************
* Copyright (c) 2012, 2014 Markus Duft <markus.duft@salomon.at> 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 org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.egit.ui.internal.clean.CleanWizardDialog;
import org.eclipse.jgit.lib.Repository;

/**
* Clean untracked/ignored files.
*/
public class CleanActionHandler extends RepositoryActionHandler {

  public Object execute(ExecutionEvent event) throws ExecutionException {
    Repository repository = getRepository();

    CleanWizardDialog dlg = new CleanWizardDialog(getShell(event),
        repository);
    dlg.setBlockOnOpen(true);
    dlg.open();

    return null;
  }

  @Override
  public boolean isEnabled() {
    Repository repository = getRepository();
    return repository != null && !repository.isBare();
  }
}
TOP

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

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.