blob: 22466a096913569cd6c7255b79a0e7d60403465a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 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.actf.ai.scripteditor.preferences;
import org.eclipse.actf.examples.scripteditor.Activator;
import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
import org.eclipse.jface.preference.IPreferenceStore;
public class CapturePreferenceInitializer extends AbstractPreferenceInitializer {
public void initializeDefaultPreferences() {
IPreferenceStore store = Activator.getDefault().getPreferenceStore();
// Initialize values
store.setDefault(CapturePreferenceConstants.SAMPRATE_GROUP_NAME,
CapturePreferenceConstants.SAMPRATE_FAST);
store.setDefault(CapturePreferenceConstants.GAIN_VOLLVL_NAME,
CapturePreferenceConstants.GAIN_DEF);
}
}