Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 82cafe6959971c70021cd9498837c0a90129028f (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
/*****************************************************************************
 * Copyright (c) 2009 CEA LIST.
 *
 *
 * 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:
 *  Patrick Tessier (CEA LIST) Patrick.tessier@cea.fr - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.infra.hyperlink.commands;


import java.util.Iterator;
import java.util.List;

import org.eclipse.emf.ecore.EAnnotation;
import org.eclipse.emf.ecore.EModelElement;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.papyrus.infra.hyperlink.util.HyperLinkConstants;

/**
 * The Class DeleteHyperLinkCommand. it can be used also to remove an hyperlink
 * web. It will remove the first eannotation that corresponds to the link or the
 * localization of the hyperlink
 */
public class EmptyAllHyperLinkCommand extends AbstractDeleteHyperLinkCommand {

	/**
	 * Instantiates a new delete hyper link command used to suppress a link in
	 * the view
	 *
	 * @param domain
	 *            the domain
	 * @param object
	 *            the object
	 * @param link
	 *            the localization of the link
	 */
	public EmptyAllHyperLinkCommand(TransactionalEditingDomain domain, EModelElement object) {
		super(domain, object);
	}

	/**
	 *
	 * @see org.eclipse.papyrus.infra.hyperlink.commands.AbstractDeleteHyperLinkCommand#getEAnnotationsToRemove()
	 *
	 * @return
	 */
	@Override
	protected List<EAnnotation> getEAnnotationsToRemove() {
		List<EAnnotation> toRemove = super.getEAnnotationsToRemove();
		Iterator<EAnnotation> iter = getObject().getEAnnotations().iterator();
		// look for interesting eannotations
		while (iter.hasNext()) {
			EAnnotation currentAnnotation = iter.next();
			String source = currentAnnotation.getSource();
			if (source.startsWith(HyperLinkConstants.PAPYRUS_HYPERLINK_PREFIX)) {
				toRemove.add(currentAnnotation);
			}
		}
		return toRemove;
	}

}

Back to the top