]> gerrit.simantics Code Review - simantics/platform.git/blob - 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
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.scenegraph.profile.impl;
13
14 import org.eclipse.core.runtime.Platform;
15
16
17 /**
18  * @author Tuukka Lehtonen
19  */
20 public final class DebugPolicy {
21
22     public static boolean DEBUG = false;
23
24     // PROFILES
25
26     public static boolean DEBUG_PROFILE_ENTRIES              = false;
27     public static boolean DEBUG_PROFILE_OBSERVER_UPDATE      = false;
28     public static boolean DEBUG_PROFILE_OBSERVER_PERFORM     = false;
29     public static boolean DEBUG_PROFILE_STYLE_ACTIVATION     = false;
30     public static boolean DEBUG_PROFILE_STYLE_GROUP_TRACKING = false;
31     public static boolean DEBUG_PROFILE_STYLE_APPLICATION    = false;
32
33     static {
34         if (Activator.getDefault().isDebugging()) {
35             DEBUG = true;
36             String sTrue = Boolean.TRUE.toString();
37
38             DEBUG_PROFILE_ENTRIES = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/entries")); //$NON-NLS-1$
39             DEBUG_PROFILE_OBSERVER_UPDATE = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/observer/update")); //$NON-NLS-1$
40             DEBUG_PROFILE_OBSERVER_PERFORM = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/observer/perform")); //$NON-NLS-1$
41             DEBUG_PROFILE_STYLE_ACTIVATION = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/style/activation")); //$NON-NLS-1$
42             DEBUG_PROFILE_STYLE_APPLICATION = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/style/application")); //$NON-NLS-1$
43             DEBUG_PROFILE_STYLE_GROUP_TRACKING = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/profile/style/group/tracking")); //$NON-NLS-1$
44         }
45     }
46
47 }