blob: d8d973933113082a6f1f7785f5e3a2fd746d5f5e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.internal.preferences;
import org.eclipse.core.runtime.preferences.*;
import org.eclipse.core.tests.runtime.RuntimeTestsPlugin;
/**
* Assigns some default preference values using initializer extension that
* are later verified by tests.
*/
public class TestInitializer extends AbstractPreferenceInitializer {
public static final String DEFAULT_PREF_KEY = "SomePreference";
public static final String DEFAULT_PREF_VALUE = "Hello";
@Override
public void initializeDefaultPreferences() {
IEclipsePreferences node = DefaultScope.INSTANCE.getNode(RuntimeTestsPlugin.PI_RUNTIME_TESTS);
node.put(DEFAULT_PREF_KEY, DEFAULT_PREF_VALUE);
}
}