Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 86477ce2f90072632cdd0ddf8dffa7f9e58ada7d (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
/*****************************************************************************
 * Copyright (c) 2007, 2009, 2013 Borland Software Corporation and others
 * 
 * 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:
 * Dmitry Stadnik (Borland) - initial API and implementation
 * Michael Golubev (Montages) - #386838 - migrate to Xtend2
 * 
 *****************************************************************************/
package aspects.xpt.editor

import com.google.inject.Inject
import com.google.inject.Singleton
import org.eclipse.gmf.codegen.gmfgen.GenEditorView
import xpt.Common

@Singleton class ActionBarContributor extends xpt.editor.ActionBarContributor {
	@Inject extension Common;
	@Inject Editor xptEditor;

	override def ActionBarContributor(GenEditorView it) '''
		«copyright(editorGen)»
		package «packageName(it)»;
		
		«generatedClassComment»
		public class «className(it)» «extendsList(it)» {
		
			«generatedMemberComment»
			
			protected Class<«xptEditor.qualifiedClassName(it)»> getEditorClass() {
				return «xptEditor.qualifiedClassName(it)».class;
			}
		
			«generatedMemberComment»
			protected String getEditorId() {
				return «xptEditor.qualifiedClassName(it)».ID;
			}
			«initMethod(it)»
			«additions(it)»
		}
	'''


}

Back to the top