Skip to main content
summaryrefslogtreecommitdiffstats
blob: 56b3d09432380f1143911fe35f7d29aade76e073 (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
/*******************************************************************************
 * Copyright (c) 2007 CEA List.
 * 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:
 *     CEA List - initial API and implementation
 *******************************************************************************/

package org.eclipse.papyrus.uml.extensionpoints.standard;

import org.eclipse.papyrus.uml.extensionpoints.Activator;

/** Interface that stores IDs adn constants for the extension point */
public class ExtensionIds {

	/** ID for the profile extension */
	public static final String PROFILE_EXTENSION_ID = Activator.PLUGIN_ID + "." + "UMLProfile";

	/** ID for the library extension point */
	public static final String LIBRARY_EXTENSION_ID = Activator.PLUGIN_ID + "." + "UMLLibrary";

	/** ID for the metamodel extension point */
	public static final String METAMODEL_EXTENSION_ID = Activator.PLUGIN_ID + "." + "UMLMetamodel";

	/** name of the <code>name</code> attribute in the DTD */
	public final static String ATT_NAME = "name";

	/** name of the <code>path</code> attribute in the DTD */
	public final static String ATT_PATH = "path";

	/** name of the <code>icon</code> attribute in the DTD */
	public final static String ATT_ICON_PATH = "iconpath";

	/** name of the <code>description</code> attribute in the DTD */
	public final static String ATT_DESCRIPTION = "description";

	/** name of the <code>provider</code>attribute in the DTD */
	public final static String ATT_PROVIDER = "provider";
}

Back to the top