Skip to main content
summaryrefslogtreecommitdiffstats
blob: 154b1fe3a53ee42d1723f999d73b83e9c4819f21 (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) 2014 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
 *  Mickael ADAM (ALL4TEC) mickael.adam@all4tec.net - Add icon and description
 *
 *****************************************************************************/
package org.eclipse.papyrus.infra.types.core.extensionpoints;

import org.eclipse.papyrus.infra.types.core.Activator;

public interface IAdviceKindExtensionPoint {

	/** ID of the extension point */
	public static final String EXTENSION_POINT_ID = Activator.PLUGIN_ID + ".adviceConfigurationKind";//$NON-NLS-1$

	public static final String FACTORY_CLASS = "factoryClass";//$NON-NLS-1$

	public static final String CONFIGURATION_CLASS = "configurationClass";//$NON-NLS-1$

	/**
	 * @since 3.0
	 */
	public static final String DESCRIPTION = "description";//$NON-NLS-1$

	/**
	 * @since 3.0
	 */
	public static final String ICON = "icon";//$NON-NLS-1$

}

Back to the top