Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5998713775609b7c3e7ef6028ca01cd240630d3a (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
/**
 * Copyright (c) 2006-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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Dmitry Stadnik (Borland) - initial API and implementation
 * 	  Michael Golubev (Montages) - #386838 - migrate to Xtend2
 */
package aspects.xpt.diagram.edithelpers;

import com.google.inject.Inject
import org.eclipse.gmf.codegen.gmfgen.MetamodelType
import utils.EditHelperUtils_qvto
import xpt.Common

public class EditHelper extends xpt.diagram.edithelpers.EditHelper {
	@Inject extension Common;
	@Inject extension EditHelperUtils_qvto




	override EditHelper(MetamodelType it) '''
		«copyright(diagramElement.diagram.editorGen)»
		package «packageName(it)»;
		
		«generatedClassComment»
		public class «editHelperClassName» extends «getBaseEditHelperFullName(diagramElement.getDiagram())» {
		«additions(it)»
		}
	'''

}

Back to the top