Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'incoming/org.eclipse.papyrus.infra.services.tracepoints/src/org/eclipse/papyrus/infra/services/tracepoints/preferences/TPPreferenceConstants.java')
-rw-r--r--incoming/org.eclipse.papyrus.infra.services.tracepoints/src/org/eclipse/papyrus/infra/services/tracepoints/preferences/TPPreferenceConstants.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/incoming/org.eclipse.papyrus.infra.services.tracepoints/src/org/eclipse/papyrus/infra/services/tracepoints/preferences/TPPreferenceConstants.java b/incoming/org.eclipse.papyrus.infra.services.tracepoints/src/org/eclipse/papyrus/infra/services/tracepoints/preferences/TPPreferenceConstants.java
new file mode 100644
index 00000000000..2a0845bb849
--- /dev/null
+++ b/incoming/org.eclipse.papyrus.infra.services.tracepoints/src/org/eclipse/papyrus/infra/services/tracepoints/preferences/TPPreferenceConstants.java
@@ -0,0 +1,51 @@
+/*****************************************************************************
+ * Copyright (c) 2012 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:
+ * Ansgar Radermacher (CEA LIST) - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.infra.services.tracepoints.preferences;
+
+/**
+ * Constant definitions for plug-in preferences
+ */
+public class TPPreferenceConstants {
+
+ /**
+ * The trace mechanism that should be used by default
+ */
+ public static final String P_TRACE_IMPLEMENTATION_PORT = "papyrus.trace.implementation.port";
+
+ /**
+ * The trace mechanism that should be used by default
+ */
+ public static final String P_TRACE_IMPLEMENTATION_OP = "papyrus.trace.implementation.op";
+
+ /**
+ * The trace mechanism that should be used by default
+ */
+ public static final String P_TRACE_IMPLEMENTATION_SM = "papyrus.trace.implementation.sm";
+
+
+ /**
+ * Options for trace implementation via state machines
+ */
+ public static final String P_TRACE_OPTION_CLASS = "papyrus.trace.option.class";
+
+ /**
+ * Options for trace implementation for operations
+ */
+ public static final String P_TRACE_OPTION_STATE = "papyrus.trace.option.state";
+
+ /**
+ * Options for trace implementation via state machines
+ */
+ public static final String P_TRACE_OPTION_OP = "papyrus.trace.option.op";
+}

Back to the top