use of org.jkiss.dbeaver.model.impl.preferences.BundlePreferenceStore in project dbeaver by dbeaver.
the class ModelPreferences method setMainBundle.
public static void setMainBundle(Bundle mainBundle) {
ModelPreferences.mainBundle = mainBundle;
ModelPreferences.preferences = new BundlePreferenceStore(mainBundle);
initializeDefaultPreferences(ModelPreferences.preferences);
}
use of org.jkiss.dbeaver.model.impl.preferences.BundlePreferenceStore in project dbeaver by dbeaver.
the class UINavigatorActivator method start.
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
preferences = new BundlePreferenceStore(getBundle());
}
use of org.jkiss.dbeaver.model.impl.preferences.BundlePreferenceStore in project dbeaver by dbeaver.
the class SQLModelActivator method start.
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
instance = this;
preferences = new BundlePreferenceStore(getBundle());
}
use of org.jkiss.dbeaver.model.impl.preferences.BundlePreferenceStore in project dbeaver by dbeaver.
the class UIChartsActivator method start.
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
preferences = new BundlePreferenceStore(getBundle());
}
use of org.jkiss.dbeaver.model.impl.preferences.BundlePreferenceStore in project dbeaver by dbeaver.
the class UIDashboardActivator method start.
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
preferences = new BundlePreferenceStore(getBundle());
DashboardUpdateJob.startUpdating();
}
Aggregations