Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 01aa8a27373cdef52704a3a967500de3195de02e (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
/*****************************************************************************
 * Copyright (c) 2013 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:
 *  Camille Letavernier (camille.letavernier@cea.fr) - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.infra.services.navigation.provider.impl;

import org.eclipse.papyrus.infra.core.services.ServiceException;
import org.eclipse.papyrus.infra.core.services.ServicesRegistry;
import org.eclipse.papyrus.infra.services.navigation.provider.NavigationTargetProvider;
import org.eclipse.papyrus.infra.ui.editor.IMultiDiagramEditor;
import org.eclipse.papyrus.infra.widgets.util.IRevealSemanticElement;
import org.eclipse.papyrus.infra.widgets.util.NavigationTarget;
import org.eclipse.papyrus.infra.widgets.util.RevealSemanticElementWrapper;
import org.eclipse.ui.IEditorPart;

/**
 * A NavigationTargetProvider to navigate in the current nested active editor
 *
 * @author Camille Letavernier
 *
 */
public class ActiveEditorNavigationTargetProvider implements NavigationTargetProvider {

	/**
	 * {@inheritDoc}
	 *
	 * Returns the current active nestedEditor
	 */
	public NavigationTarget getNavigationTarget(ServicesRegistry registry) {
		IMultiDiagramEditor editor;
		try {
			editor = registry.getService(IMultiDiagramEditor.class);
			if (editor == null) {
				return null;
			}
		} catch (ServiceException ex) {
			// We're not in the context of the multi diagram editor. We have nothing to contribute.
			// Ignore the exception and do not do anything.
			return null;
		}

		IEditorPart activeEditor = editor.getActiveEditor();
		if (activeEditor instanceof NavigationTarget) {
			return (NavigationTarget) activeEditor;
		} else if (activeEditor instanceof IRevealSemanticElement) {
			return new RevealSemanticElementWrapper((IRevealSemanticElement) activeEditor);
		}

		return null;
	}

}

Back to the top