Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/IADL4ECLIPSE_Stereotype.java')
-rw-r--r--extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/IADL4ECLIPSE_Stereotype.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/IADL4ECLIPSE_Stereotype.java b/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/IADL4ECLIPSE_Stereotype.java
new file mode 100644
index 00000000000..690ea15ef8e
--- /dev/null
+++ b/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/IADL4ECLIPSE_Stereotype.java
@@ -0,0 +1,63 @@
+/*****************************************************************************
+ * Copyright (c) 2013 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:
+ * Patrick Tessier (CEA LIST) patrick.tessier@cea.fr - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.adl4eclipse.org;
+
+public interface IADL4ECLIPSE_Stereotype {
+ /** Qualified name of the Plugin */
+ public static final String PLUGIN_STEREOTYPE = "ADL4Eclipse::Plugin";
+ /** name of property isIncubation of the stereotype Plugin */
+ public static final String PLUGIN_ISINCUBATION_ATT = "isIncubation";
+ /** name of property lazyStart of the stereotype Plugin */
+ public static final String PLUGIN_LAZYSTART_ATT = "lazyStart";
+ /** name of property lazyStartException of the stereotype Plugin */
+ public static final String PLUGIN_LAZYSTARTEXCEPTION_ATT = "lazyStartException";
+ /** name of property platformFilter of the stereotype Plugin */
+ public static final String PLUGIN_PLATFORMFILTER_ATT = "platformFilter";
+ /** name of property buddyPolicy of the stereotype Plugin */
+ public static final String PLUGIN_BUDDYPOLICY_ATT = "buddyPolicy";
+ /** name of property extensibleAPI of the stereotype Plugin */
+ public static final String PLUGIN_EXTENSIBLEAPI_ATT = "extensibleAPI";
+ /** name of property bundleShape of the stereotype Plugin */
+ public static final String PLUGIN_BUNDLESHAPE_ATT = "bundleShape";
+ /** name of property capability of the stereotype Plugin */
+ public static final String PLUGIN_CAPABILITY_ATT = "capability";
+ /** name of property requireCapability of the stereotype Plugin */
+ public static final String PLUGIN_REQUIRECAPABILITY_ATT = "requireCapability";
+ /** name of property genericCapabilityAlias of the stereotype Plugin */
+ public static final String PLUGIN_GENERICCAPABILITYALIAS_ATT = "genericCapabilityAlias";
+ /** Qualified name of the EclipseExportedPackage */
+ public static final String ECLIPSEEXPORTEDPACKAGE_ = "ADL4Eclipse::EclipseExportedPackage";
+ /** name of property isInternal of the stereotype EclipseExportedPackage */
+ public static final String ECLIPSEEXPORTEDPACKAGE_ISINTERNAL_ATT = "isInternal";
+ /** name of property friend of the stereotype EclipseExportedPackage */
+ public static final String ECLIPSEEXPORTEDPACKAGE_FRIEND_ATT = "friend";
+ /** name of literal dependent of the Enumeration BuddyPolicyEnumeration */
+ public static final String BUDDYPOLICYENUMERATION_DEPENDENT_ENUM = "dependent";
+ /** name of literal global of the Enumeration BuddyPolicyEnumeration */
+ public static final String BUDDYPOLICYENUMERATION_GLOBAL_ENUM = "global";
+ /** name of literal registered of the Enumeration BuddyPolicyEnumeration */
+ public static final String BUDDYPOLICYENUMERATION_REGISTERED_ENUM = "registered";
+ /** name of literal app of the Enumeration BuddyPolicyEnumeration */
+ public static final String BUDDYPOLICYENUMERATION_APP_ENUM = "app";
+ /** name of literal ext of the Enumeration BuddyPolicyEnumeration */
+ public static final String BUDDYPOLICYENUMERATION_EXT_ENUM = "ext";
+ /** name of literal boot of the Enumeration BuddyPolicyEnumeration */
+ public static final String BUDDYPOLICYENUMERATION_BOOT_ENUM = "boot";
+ /** name of literal parent of the Enumeration BuddyPolicyEnumeration */
+ public static final String BUDDYPOLICYENUMERATION_PARENT_ENUM = "parent";
+ /** name of literal jar of the Enumeration BundleShapeEnumeration */
+ public static final String BUNDLESHAPEENUMERATION_JAR_ENUM = "jar";
+ /** name of literal dir of the Enumeration BundleShapeEnumeration */
+ public static final String BUNDLESHAPEENUMERATION_DIR_ENUM = "dir";
+ } \ No newline at end of file

Back to the top