blob: bec324165696b83b7dd7b78cda4cce6cd7da2f2b [file] [log] [blame]
package org.eclipse.epf.common.ui;
import org.eclipse.epf.common.CommonPlugin;
import org.eclipse.epf.common.IMessageCallback;
import org.eclipse.epf.common.ui.util.MsgBox;
import org.osgi.framework.BundleContext;
public class CommonUIPlugin extends AbstractPlugin {
// The shared plug-in instance.
private static CommonUIPlugin plugin;
/**
* Creates a new instance.
*/
public CommonUIPlugin() {
super();
plugin = this;
}
/**
* @see org.eclipse.epf.common.ui.AbstractPlugin#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
super.start(context);
// // set the preference store for the common plugin
PreferenceStoreWrapper storeWrapper = new PreferenceStoreWrapper(getPreferenceStore());
CommonPlugin.getDefault().setCommonPreferenceStore(storeWrapper);
// create the message callback context for the non-ui plugins
// this is the context for message callback
// for eclipse client, this is the Shell object
// shell object can't be shared acrooss thread, use a context provider instead
//CommonPlugin.getDefault().setContext(MsgBox.getDefaultShell());
CommonPlugin.getDefault().setContextProvider(new ContextProvider());
// create the MessageCallback to be accessible to the non-ui plugin
IMessageCallback msgCallback = new MessageCallback();
}
/**
* @see org.eclipse.epf.common.ui.AbstractPlugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
super.stop(context);
plugin = null;
}
/**
* Gets the shared instance.
*
* @return the shared plug-in instance
*/
public static CommonUIPlugin getDefault() {
return plugin;
}
}