Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c3141aa0c8fb8e00da897f0137787fdd31467321 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.papyrus.eastadl.service.types.menu;

import org.eclipse.papyrus.infra.ui.util.AbstractCreateMenuFromCommandCategory;

public class AbstractCreateEastadlChildMenu extends AbstractCreateMenuFromCommandCategory {

	/** the cateogory of the command used to create SysML elements */
	public static final String SYSML_CREATION_COMMAND_CATEGORY = "org.eclipse.papyrus.eastadl.service.types.eastadlElementCreationCommands"; //$NON-NLS-1$

	/**
	 * Constructor.
	 *
	 */
	public AbstractCreateEastadlChildMenu() {
		super(SYSML_CREATION_COMMAND_CATEGORY);
	}
}

Back to the top