Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 36312c54b940911a3e07643c23cce32e3d497351 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*****************************************************************************
 * 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:
 *   CEA LIST - Initial API and implementation
 *****************************************************************************/
package org.eclipse.papyrus.cdo.internal.ui.editors;

import org.eclipse.emf.common.ui.URIEditorInput;
import org.eclipse.emf.common.util.URI;
import org.eclipse.papyrus.infra.core.editor.IPapyrusPageInput;
import org.eclipse.ui.IPersistableElement;

/**
 * This is the PapyrusCDOEditorInput type. Enjoy.
 */
public class PapyrusCDOEditorInput extends URIEditorInput {

	public PapyrusCDOEditorInput(URI uri) {
		this(uri, uri.trimFileExtension().lastSegment());
	}

	public PapyrusCDOEditorInput(URI uri, String name) {
		super(uri, name);
	}

	/**
	 * Editors on CDO resources cannot be re-opened without re-connecting the
	 * repository, so return {@code null}.
	 */
	@Override
	public IPersistableElement getPersistable() {
		return null;
	}

	@Override
	public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
		Object result;

		if (adapter == URI.class) {
			result = getURI();
		} else {
			result = super.getAdapter(adapter);
		}

		return result;
	}

	/**
	 * A specialization of the CDO editor input that supports specifying editor pages to open in addition.
	 */
	public static class PageInput extends PapyrusCDOEditorInput implements IPapyrusPageInput {

		private static final URI[] NO_URIS = {};

		private final URI[] pageURIs;

		private final boolean closeOtherPages;

		public PageInput(URI uri) {
			this(uri, NO_URIS, false);
		}

		public PageInput(URI uri, URI[] pageURIs, boolean closeOtherPages) {
			super(uri);

			this.pageURIs = pageURIs;
			this.closeOtherPages = closeOtherPages;
		}


		@Override
		public URI[] getPages() {
			return pageURIs;
		}

		@Override
		public boolean closeOtherPages() {
			return closeOtherPages;
		}

	}
}

Back to the top