Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8a8ee4ed2d9a57fe5f2175e94551a25a7b790535 (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.tools.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