blob: c31de42c5661eb796281037da22a389cda183b48 [file] [log] [blame]
package org.eclipse.ui.examples.readmetool;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.core.runtime.IPluginDescriptor;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.ui.plugin.AbstractUIPlugin;
/**
* This is the top-level class of the Readme plugin tool.
*
* @see AbstractUIPlugin for additional information on UI plugins
*/
public class ReadmePlugin extends AbstractUIPlugin {
// Default instance of the receiver
private static ReadmePlugin inst;
/**
* Creates the Readme plugin and caches its default instance
*
* @param descriptor the plugin descriptor which the receiver is made from
*/
public ReadmePlugin(IPluginDescriptor descriptor) {
super(descriptor);
if (inst==null) inst = this;
}
/**
* Gets the plugin singleton.
*
* @return the default ReadmePlugin instance
*/
static public ReadmePlugin getDefault() {
return inst;
}
/**
* Sets default preference values. These values will be used
* until some preferences are actually set using Preference dialog.
*/
protected void initializeDefaultPreferences(IPreferenceStore store) {
// These settings will show up when Preference dialog
// opens up for the first time.
store.setDefault(IReadmeConstants.PRE_CHECK1, true);
store.setDefault(IReadmeConstants.PRE_CHECK2, true);
store.setDefault(IReadmeConstants.PRE_CHECK3, false);
store.setDefault(IReadmeConstants.PRE_RADIO_CHOICE, 2);
store.setDefault(IReadmeConstants.PRE_TEXT, MessageUtil.getString("Default_text")); //$NON-NLS-1$
}
}