]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural2/src/org/simantics/structural2/modelingRules/Policy.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural2 / src / org / simantics / structural2 / modelingRules / Policy.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.structural2.modelingRules;
13
14 import org.eclipse.core.runtime.Platform;
15 import org.simantics.structural2.internal.Activator;
16
17 /**
18  * @author Tuukka Lehtonen
19  */
20 public final class Policy {
21
22     public static boolean DEBUG                         = false;
23
24     public static boolean DEBUG_STANDARD_MODELING_RULES = false;
25
26     public static boolean DEBUG_CONNECTION_CONSTRAINTS  = false;
27
28     static {
29         if (Activator.getDefault().isDebugging()) {
30             DEBUG = true;
31             String sTrue = Boolean.TRUE.toString();
32
33             DEBUG_STANDARD_MODELING_RULES = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/modelingrules/standard")); //$NON-NLS-1$
34             DEBUG_CONNECTION_CONSTRAINTS = sTrue.equalsIgnoreCase(Platform.getDebugOption(Activator.PLUGIN_ID + "/debug/modelingrules/connectionConstraints")); //$NON-NLS-1$
35         }
36     }
37
38 }