Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 588d759be45889eea842e674cf6d1e1c203c9bd5 (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
/*****************************************************************************
 * Copyright (c) 2015 Christian W. Damus 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:
 *   Christian W. Damus - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.dev.assistants.codegen.generator;

import org.eclipse.gmf.codegen.gmfgen.GenEditorGenerator;
import org.eclipse.papyrus.infra.gmfdiag.assistant.ModelingAssistantProvider;
import org.eclipse.papyrus.uml.profile.types.generator.AbstractGenerator;
import org.eclipse.papyrus.uml.profile.types.generator.Identifiers;

import com.google.inject.Inject;

/**
 * The generator facade for the UML Profile to Modeling Assistant Provider transformation.
 */
public class GMFGenToAssistantsGenerator extends AbstractGenerator<GenEditorGenerator, ModelingAssistantProvider> {

	@Inject
	private org.eclipse.papyrus.uml.profile.assistants.generator.ModelingAssistantProviderRule mainRule;

	public GMFGenToAssistantsGenerator(GenEditorGenerator editor) {
		this(createGeneratorModule(editor));
	}

	public GMFGenToAssistantsGenerator(GeneratorModule module) {
		super(module);
	}

	@Override
	protected ModelingAssistantProvider generate(GenEditorGenerator editor) {
		return ((ModelingAssistantProviderRule) mainRule).toModelingAssistantProvider(editor);
	}

	private static GeneratorModule createGeneratorModule(GenEditorGenerator editor) {
		Identifiers identifiers = new Identifiers();

		// TODO: Prompt the user for this
		identifiers.setBaseElementTypesSet(editor.getPlugin().getID() + ".elementTypeSet");
		return new GeneratorModule(identifiers);
	}
}

Back to the top