X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scenegraph.profile%2Fsrc%2Forg%2Fsimantics%2Fscenegraph%2Fprofile%2Fimpl%2FDebugPolicy.java;fp=bundles%2Forg.simantics.scenegraph.profile%2Fsrc%2Forg%2Fsimantics%2Fscenegraph%2Fprofile%2Fimpl%2FDebugPolicy.java;h=69bafcb9af245a782717b0d793fbf855bdf53956;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/impl/DebugPolicy.java b/bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/impl/DebugPolicy.java new file mode 100644 index 000000000..69bafcb9a --- /dev/null +++ b/bundles/org.simantics.scenegraph.profile/src/org/simantics/scenegraph/profile/impl/DebugPolicy.java @@ -0,0 +1,47 @@ +/******************************************************************************* + * 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$ + } + } + +}