blob: 4fa3d375951dc9efcb3071ece81a39d455317070 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2008 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.navigator;
import org.eclipse.core.runtime.Platform;
/**
* Policy is the class for the debug arguments in the navigator
*
*/
public class Policy {
/**
* The default value
*/
public static final boolean DEFAULT = false;
/**
* Option for tracing the reading and setup of the extensions
*/
public static boolean DEBUG_EXTENSION_SETUP = DEFAULT;
/**
* Option for tracing extension resolution
*/
public static boolean DEBUG_RESOLUTION = DEFAULT;
/**
* Option for tracing drag and drop
*/
public static boolean DEBUG_DND = DEFAULT;
static {
if (getDebugOption("/debug")) { //$NON-NLS-1$
DEBUG_EXTENSION_SETUP = getDebugOption("/debug/setup"); //$NON-NLS-1$
DEBUG_RESOLUTION = getDebugOption("/debug/resolution"); //$NON-NLS-1$
DEBUG_DND = getDebugOption("/debug/dnd"); //$NON-NLS-1$
}
}
private static boolean getDebugOption(String option) {
return "true".equalsIgnoreCase(Platform.getDebugOption(NavigatorPlugin.PLUGIN_ID + option)); //$NON-NLS-1$
}
}