Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0b809d8c27e68d90032f2644d853ab62341dab77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * Copyright (C) 2010, Jens Baumgart <jens.baumgart@sap.com>
 * Copyright (C) 2010, Stefan Lay <stefan.lay@sap.com>
 *
 * 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.egit.core.op.AddToIndexOperation;

/**
 * An action to add files to a Git index.
 *
 * @see AddToIndexOperation
 */
public class AddToIndexAction extends RepositoryAction {

	/**
	 * Constructs this action
	 */
	public AddToIndexAction() {
		super(ActionCommands.ADD_TO_INDEX, new AddToIndexActionHandler());
	}

}

Back to the top