Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 7774db0ee412255b4920f3cb682c88342390c4b0 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                
                                                       


                                                                       
                                                           


                                         















                                                                                 
                 












                                                                                                                                            
 
                 




                                                                                  

        
/*******************************************************************************
 * Copyright (c) 2007, 2010 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 * IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.actions;

import org.eclipse.jface.window.Window;
import org.eclipse.team.internal.ccvs.core.CVSTag;
import org.eclipse.team.internal.ccvs.ui.CVSUIMessages;
import org.eclipse.team.internal.ccvs.ui.IHelpContextIds;
import org.eclipse.team.internal.ccvs.ui.operations.ReplaceOperation;
import org.eclipse.team.internal.ccvs.ui.tags.TagSelectionDialog;
import org.eclipse.team.internal.ccvs.ui.tags.TagSource;

public class ReplaceWithSelectableTagAction extends ReplaceWithTagAction {
	
	@Override
	protected CVSTag getTag(final ReplaceOperation replaceOperation) {
		TagSelectionDialog dialog = new TagSelectionDialog(getShell(), TagSource.create(replaceOperation.getScope().getMappings()), 
			CVSUIMessages.ReplaceWithTagAction_message, 
			CVSUIMessages.TagSelectionDialog_Select_a_Tag_1, 
			TagSelectionDialog.INCLUDE_ALL_TAGS, 
			false, /*show recurse*/
			IHelpContextIds.REPLACE_TAG_SELECTION_DIALOG); 
		dialog.setBlockOnOpen(true);
		if (dialog.open() == Window.CANCEL) {
			return null;
		}
		return dialog.getResult();
	}

	@Override
	protected ReplaceOperation createReplaceOperation() {
		ReplaceOperation replaceOperation= super.createReplaceOperation();
		replaceOperation.ignoreResourcesWithMissingTag();
		return replaceOperation;
	}
	
}

Back to the top