]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/impl/DebugPolicy.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scenegraph.profile / src / org / simantics / scenegraph / profile / impl / DebugPolicy.java
diff --git a/bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/impl/DebugPolicy.java b/bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/impl/DebugPolicy.java
new file mode 100644 (file)
index 0000000..69bafcb
--- /dev/null
@@ -0,0 +1,47 @@
+/*******************************************************************************\r
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
+ * in Industry THTH ry.\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Eclipse Public License v1.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ * Contributors:\r
+ *     VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+package org.simantics.scenegraph.profile.impl;\r
+\r
+import org.eclipse.core.runtime.Platform;\r
+\r
+\r
+/**\r
+ * @author Tuukka Lehtonen\r
+ */\r
+public final class DebugPolicy {\r
+\r
+    public static boolean DEBUG = false;\r
+\r
+    // PROFILES\r
+\r
+    public static boolean DEBUG_PROFILE_ENTRIES              = false;\r
+    public static boolean DEBUG_PROFILE_OBSERVER_UPDATE      = false;\r
+    public static boolean DEBUG_PROFILE_OBSERVER_PERFORM     = false;\r
+    public static boolean DEBUG_PROFILE_STYLE_ACTIVATION     = false;\r
+    public static boolean DEBUG_PROFILE_STYLE_GROUP_TRACKING = false;\r
+    public static boolean DEBUG_PROFILE_STYLE_APPLICATION    = false;\r
+\r
+    static {\r
+        if (Activator.getDefault().isDebugging()) {\r
+            DEBUG = true;\r
+            String sTrue = Boolean.TRUE.toString();\r
+\r
+            DEBUG_PROFILE_ENTRIES = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/entries")); //$NON-NLS-1$\r
+            DEBUG_PROFILE_OBSERVER_UPDATE = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/observer/update")); //$NON-NLS-1$\r
+            DEBUG_PROFILE_OBSERVER_PERFORM = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/observer/perform")); //$NON-NLS-1$\r
+            DEBUG_PROFILE_STYLE_ACTIVATION = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/style/activation")); //$NON-NLS-1$\r
+            DEBUG_PROFILE_STYLE_APPLICATION = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/style/application")); //$NON-NLS-1$\r
+            DEBUG_PROFILE_STYLE_GROUP_TRACKING = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/style/group/tracking")); //$NON-NLS-1$\r
+        }\r
+    }\r
+\r
+}\r