blob: fff3b1cf14eb532d949de0305c4e5ce2f74efd11 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.ruby.activestatedebugger;
import org.eclipse.jface.preference.IPreferenceStore;
public final class RubyActiveStateDebuggerConstants {
public static final String DEBUGGING_ENGINE_PATH_KEY = "debugging_engine_path"; //$NON-NLS-1$
public static final String ENABLE_LOGGING = "enable_logging"; //$NON-NLS-1$
public static final String LOG_FILE_PATH = "log_file_path"; //$NON-NLS-1$
public static final String LOG_FILE_NAME = "log_file_name"; //$NON-NLS-1$
public static void initializeDefaults(IPreferenceStore store) {
store.setDefault(DEBUGGING_ENGINE_PATH_KEY, ""); //$NON-NLS-1$
store.setDefault(ENABLE_LOGGING, false);
store.setDefault(LOG_FILE_NAME, "rubyASDebug_{0}.log"); //$NON-NLS-1$
store.setDefault(LOG_FILE_PATH, ""); //$NON-NLS-1$
}
private RubyActiveStateDebuggerConstants() {
// private constructor
}
}