Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: af094b277fe0518fffa6edcef73c079cb5c2e379 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation 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
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Jens Lukowski/Innoopract - initial renaming/restructuring
 *     
 *******************************************************************************/


package org.eclipse.wst.dtd.ui.internal.views.contentoutline.actions;

import java.util.Iterator;

import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.actions.SelectionListenerAction;
import org.eclipse.wst.dtd.core.internal.CMNode;
import org.eclipse.wst.dtd.core.internal.DTDFile;
import org.eclipse.wst.dtd.core.internal.DTDNode;
import org.eclipse.wst.dtd.core.internal.util.DTDBatchNodeDelete;
import org.eclipse.wst.dtd.ui.internal.DTDUIMessages;


public class DeleteAction extends SelectionListenerAction {

	public DeleteAction(String label) {
		super(label);
	}

	public void run() {
		IStructuredSelection selection = getStructuredSelection();

		Iterator iter = selection.iterator();
		DTDBatchNodeDelete batchDelete = null;
		DTDFile dtdFile = null;
		while (iter.hasNext()) {
			Object element = iter.next();
			if (element instanceof DTDNode) {
				DTDNode node = (DTDNode) element;
				dtdFile = node.getDTDFile();
				if (batchDelete == null) {
					batchDelete = new DTDBatchNodeDelete(dtdFile);
				}
				batchDelete.addNode((DTDNode) element);
			}
		}
		dtdFile.getDTDModel().beginRecording(this, DTDUIMessages._UI_LABEL_DTD_FILE_DELETE); //$NON-NLS-1$
		batchDelete.deleteNodes(this);
		dtdFile.getDTDModel().endRecording(this);
	}

	public boolean updateSelection(IStructuredSelection sel) {
		if (!super.updateSelection(sel))
			return false;

		Object selectedObject = sel.getFirstElement();
		if (selectedObject instanceof DTDNode && !(selectedObject instanceof CMNode && ((CMNode) selectedObject).isRootElementContent())) {
			setEnabled(true);
			return true; // enable delete menu item
		}
		else {
			setEnabled(false);
			return false; // disable it - grey out
		}
	}
}

Back to the top