]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/impl/DebugPolicy.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scenegraph.profile / src / org / simantics / scenegraph / profile / impl / DebugPolicy.java
index 69bafcb9af245a782717b0d793fbf855bdf53956..246f0598491f322c0346ff38744f67a83f1eb08d 100644 (file)
@@ -1,47 +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
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * 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:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.scenegraph.profile.impl;
+
+import org.eclipse.core.runtime.Platform;
+
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public final class DebugPolicy {
+
+    public static boolean DEBUG = false;
+
+    // PROFILES
+
+    public static boolean DEBUG_PROFILE_ENTRIES              = false;
+    public static boolean DEBUG_PROFILE_OBSERVER_UPDATE      = false;
+    public static boolean DEBUG_PROFILE_OBSERVER_PERFORM     = false;
+    public static boolean DEBUG_PROFILE_STYLE_ACTIVATION     = false;
+    public static boolean DEBUG_PROFILE_STYLE_GROUP_TRACKING = false;
+    public static boolean DEBUG_PROFILE_STYLE_APPLICATION    = false;
+
+    static {
+        if (Activator.getDefault().isDebugging()) {
+            DEBUG = true;
+            String sTrue = Boolean.TRUE.toString();
+
+            DEBUG_PROFILE_ENTRIES = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/entries")); //$NON-NLS-1$
+            DEBUG_PROFILE_OBSERVER_UPDATE = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/observer/update")); //$NON-NLS-1$
+            DEBUG_PROFILE_OBSERVER_PERFORM = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/observer/perform")); //$NON-NLS-1$
+            DEBUG_PROFILE_STYLE_ACTIVATION = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/style/activation")); //$NON-NLS-1$
+            DEBUG_PROFILE_STYLE_APPLICATION = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/style/application")); //$NON-NLS-1$
+            DEBUG_PROFILE_STYLE_GROUP_TRACKING = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/style/group/tracking")); //$NON-NLS-1$
+        }
+    }
+
+}