blob: 032e2920d50de5ebb399bfb83f325f6398c990e6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 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.jdt.internal.launching;
import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
import org.eclipse.core.runtime.preferences.DefaultScope;
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.launching.JavaRuntime;
import org.osgi.service.prefs.BackingStoreException;
/**
* Initializes preferences for the JDT launching plug-in.
*
* @since 3.5
*/
public class LaunchingPreferenceInitializer extends AbstractPreferenceInitializer {
/* (non-Javadoc)
* @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
*/
@Override
public void initializeDefaultPreferences() {
IEclipsePreferences dnode = DefaultScope.INSTANCE.getNode(LaunchingPlugin.ID_PLUGIN);
if(dnode == null) {
return;
}
dnode.putInt(JavaRuntime.PREF_CONNECT_TIMEOUT, JavaRuntime.DEF_CONNECT_TIMEOUT);
dnode.put(JavaRuntime.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE, JavaCore.WARNING);
try {
dnode.flush();
} catch (BackingStoreException e) {
LaunchingPlugin.log(e);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=255381
// NOTE: only the pref's default value is initialized to avoid deadlock (we don't set the
// associated JavaCore options, as this can trigger a job to touch the project (see
// bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=260445)
String launchFilter = "*." + ILaunchConfiguration.LAUNCH_CONFIGURATION_FILE_EXTENSION; //$NON-NLS-1$
dnode = DefaultScope.INSTANCE.getNode(JavaCore.PLUGIN_ID);
if(dnode == null) {
return;
}
dnode.put(JavaCore.CORE_JAVA_BUILD_RESOURCE_COPY_FILTER, launchFilter);
try {
dnode.flush();
} catch (BackingStoreException e) {
LaunchingPlugin.log(e);
}
}
}