Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dd2f0a8e0d556e769af3eebbafb5e540426b4eca (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/******************************************************************************
 * Copyright (c) 2007, 2020 Borland Software Corporation, CEA LIST, Artal
 * 
 * All rights reserved. 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: 
 *    Alexander Shatalin (Borland) - initial API and implementation
 *    Aurelien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
 *****************************************************************************/

«IMPORT 'http://www.eclipse.org/papyrus/gmf/2020/GenModel'»

«DEFINE DomainNavigatorItem FOR gmfgen::GenNavigator-»
	«EXPAND xpt::Common::copyright FOR editorGen-»
package «packageName»;

	«EXPAND xpt::Common::generatedClassComment»
public class «domainNavigatorItemClassName» extends org.eclipse.core.runtime.PlatformObject {

	«EXPAND registerAdapterFactory-»
	
	«EXPAND xpt::navigator::AbstractNavigatorItem::attributes-»
	
	«EXPAND attributes-»
	
	«EXPAND _constructor-»
	
	«EXPAND xpt::navigator::AbstractNavigatorItem::getParent-»
	
	«EXPAND getEObject-»
	
	«EXPAND getPropertySourceProvider-»
	
	«EXPAND equals-»
	
	«EXPAND hashCode-»

	«EXPAND additions-»
}
«ENDDEFINE»

«DEFINE registerAdapterFactory FOR gmfgen::GenNavigator-»
	«EXPAND xpt::Common::generatedMemberComment»
static {
	final Class[] supportedTypes = new Class[] { org.eclipse.emf.ecore.EObject.class, org.eclipse.ui.views.properties.IPropertySource.class };
	org.eclipse.core.runtime.Platform.getAdapterManager().registerAdapters(new org.eclipse.core.runtime.IAdapterFactory() {
		
		public Object getAdapter(Object adaptableObject, Class adapterType) {
			if (adaptableObject instanceof «getDomainNavigatorItemQualifiedClassName()») {
				«getDomainNavigatorItemQualifiedClassName()» domainNavigatorItem = («getDomainNavigatorItemQualifiedClassName()») adaptableObject;
				org.eclipse.emf.ecore.EObject eObject = domainNavigatorItem.getEObject();
				if (adapterType == org.eclipse.emf.ecore.EObject.class) {
					return eObject;
				}
				if (adapterType == org.eclipse.ui.views.properties.IPropertySource.class) {
					return domainNavigatorItem.getPropertySourceProvider().getPropertySource(eObject);
				}
			}
		
			return null;
		}

		public Class[] getAdapterList() {
			return supportedTypes;
		}
	}, «getDomainNavigatorItemQualifiedClassName()».class);
}
«ENDDEFINE»

«DEFINE  attributes FOR gmfgen::GenNavigator-»
	«EXPAND xpt::Common::generatedMemberComment»
private org.eclipse.emf.ecore.EObject myEObject;

	«EXPAND xpt::Common::generatedMemberComment»
private org.eclipse.ui.views.properties.IPropertySourceProvider myPropertySourceProvider;
«ENDDEFINE»

«DEFINE  _constructor FOR gmfgen::GenNavigator-»
	«EXPAND xpt::Common::generatedMemberComment»
public «domainNavigatorItemClassName»(org.eclipse.emf.ecore.EObject eObject, Object parent, org.eclipse.ui.views.properties.IPropertySourceProvider propertySourceProvider) {
	myParent = parent;
	myEObject = eObject;
	myPropertySourceProvider = propertySourceProvider;
}
«ENDDEFINE»

«DEFINE  getEObject FOR gmfgen::GenNavigator-»
	«EXPAND xpt::Common::generatedMemberComment»
public org.eclipse.emf.ecore.EObject getEObject() {
	return myEObject;
}
«ENDDEFINE»

«DEFINE getPropertySourceProvider FOR gmfgen::GenNavigator-»
	«EXPAND xpt::Common::generatedMemberComment»
public org.eclipse.ui.views.properties.IPropertySourceProvider getPropertySourceProvider() {
	return myPropertySourceProvider;
}
«ENDDEFINE»

«DEFINE  equals FOR gmfgen::GenNavigator-»
	«EXPAND xpt::Common::generatedMemberComment»
public boolean equals(Object obj) {
	if (obj instanceof «getDomainNavigatorItemQualifiedClassName()») {
		return org.eclipse.emf.ecore.util.EcoreUtil.getURI(getEObject()).equals(org.eclipse.emf.ecore.util.EcoreUtil.getURI(((«getDomainNavigatorItemQualifiedClassName()») obj).getEObject()));
	}
	return super.equals(obj);
}
«ENDDEFINE»
	
«DEFINE  hashCode FOR gmfgen::GenNavigator-»
	«EXPAND xpt::Common::generatedMemberComment»
public int hashCode() {
	return org.eclipse.emf.ecore.util.EcoreUtil.getURI(getEObject()).hashCode();
}
«ENDDEFINE»

«DEFINE additions FOR gmfgen::GenNavigator-»
«ENDDEFINE»

Back to the top