/* * #%~ * Developer Utilities for Overture * %% * Copyright (C) 2008 - 2014 Overture * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * #~% */ package org.overture.ide.plugins.developerutils.preferences; /******************************************************************************* * Copyright (c) 2009, 2011 Overture Team and others. * * Overture is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Overture is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Overture. If not, see <http://www.gnu.org/licenses/>. * * The Overture Tool web-site: http://overturetool.org/ *******************************************************************************/ import org.eclipse.jface.preference.FieldEditorPreferencePage; import org.eclipse.jface.preference.FileFieldEditor; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.ui.IWorkbench; import org.eclipse.ui.IWorkbenchPreferencePage; import org.overture.ide.plugins.developerutils.IOvertureDeveloperUtils; import org.overture.ide.plugins.developerutils.OvertureDeveliperUtilsPlugin; public class WorkbenchPreferencePageDot extends FieldEditorPreferencePage implements IWorkbenchPreferencePage { public void init(IWorkbench workbench) { } @Override protected void createFieldEditors() { addField(new FileFieldEditor(IOvertureDeveloperUtils.DOT_PATH_PREFERENCE, "DOT Path", getFieldEditorParent())); } @Override protected IPreferenceStore doGetPreferenceStore() { return OvertureDeveliperUtilsPlugin.getDefault().getPreferenceStore(); } @Override protected void performDefaults() { IPreferenceStore store = getPreferenceStore(); store.setDefault(IOvertureDeveloperUtils.DOT_PATH_PREFERENCE, IOvertureDeveloperUtils.DEFAULT_DOT_PATH); super.performDefaults(); } }