blob: 45f4cc2b26d1c4c19baa8013644ea8e5a25c2a3e [file] [log] [blame]
/*
* Copyright (c) 2011 Google Inc.
*
* 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
*/
package com.google.eclipse.protobuf.ui.preferences.paths;
import static com.google.eclipse.protobuf.ui.preferences.paths.PathsPreferenceNames.*;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.xtext.ui.editor.preferences.IPreferenceStoreAccess;
import org.eclipse.xtext.ui.editor.preferences.IPreferenceStoreInitializer;
/**
* Initializes default values for the "Paths" preferences.
*
* @author alruiz@google.com (Alex Ruiz)
*/
public class PathsPreferencesInitializer implements IPreferenceStoreInitializer {
/** {@inheritDoc} */
public void initialize(IPreferenceStoreAccess access) {
IPreferenceStore store = access.getWritablePreferenceStore();
store.setDefault(ALL_PROTOS_IN_ONE_FOLDER_ONLY, true);
store.setDefault(PROTOS_IN_MULTIPLE_FOLDERS, false);
store.setDefault(FOLDER_NAMES, "");
}
}