]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.project/src/org/simantics/project/internal/ProjectPolicy.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.project / src / org / simantics / project / internal / ProjectPolicy.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.project.internal;
13
14 import org.eclipse.core.runtime.Platform;
15
16 /**
17  * Contains the active project framework -related debugging and tracing policy.
18  * 
19  * @author Tuukka Lehtonen
20  */
21 public final class ProjectPolicy {
22
23     // General debug flag for the plugin
24     public static boolean DEBUG = false;
25
26     public static boolean TRACE_PROJECT_MANAGEMENT = false;
27     public static boolean TRACE_PROJECT_FEATURE_LOAD = false;
28
29     static {
30         if (Activator.getDefault().isDebugging()) {
31             DEBUG = true;
32             String sTrue = Boolean.TRUE.toString();
33
34             TRACE_PROJECT_MANAGEMENT = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/trace/projectManagement")); //$NON-NLS-1$
35             TRACE_PROJECT_FEATURE_LOAD = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/trace/projectFeatureLoad")); //$NON-NLS-1$
36         }
37     }
38
39 }