Add update index action
[egit.git] / org.spearce.egit.ui / src / org / spearce / egit / ui / internal / actions / Update.java
blob150604e90382301ac76b373c33a1014ede64df8c
1 /*
2 * Copyright (C) 2007 Robin Rosenberg
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License, version 2.1, as published by the Free Software Foundation.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
17 package org.spearce.egit.ui.internal.actions;
19 import java.util.List;
21 import org.eclipse.core.resources.IWorkspaceRunnable;
22 import org.eclipse.jface.action.IAction;
23 import org.spearce.egit.core.op.UpdateOperation;
25 public class Update extends AbstractOperationAction {
26 protected IWorkspaceRunnable createOperation(final IAction act,
27 final List sel) {
28 return sel.isEmpty() ? null : new UpdateOperation(sel);