]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/internal/DebugPolicy.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / internal / 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.g2d.internal;
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     public static boolean DEBUG_DELAYED_ELEMENT_PAINTER         = false;
25     public static boolean DEBUG_DELAYED_ELEMENT_PAINTER_MARKING = false;
26
27     public static boolean PERF_CHASSIS_RENDER_FRAME         = false;
28
29     static {
30         Activator activator = Activator.getDefault();
31         if (activator != null && activator.isDebugging()) {
32             DEBUG = true;
33             String sTrue = Boolean.TRUE.toString();
34
35             DEBUG_DELAYED_ELEMENT_PAINTER = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/element/painter/delayed")); //$NON-NLS-1$
36             DEBUG_DELAYED_ELEMENT_PAINTER_MARKING = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/element/painter/delayed/marking")); //$NON-NLS-1$
37
38             PERF_CHASSIS_RENDER_FRAME = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/perf/chassis/renderFrame")); //$NON-NLS-1$
39         }
40     }
41
42 }