UsageViewPlugin.java
/*******************************************************************************
* Copyright (c) 2026 Carsten Hammer.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Carsten Hammer
*******************************************************************************/
package org.sandbox.jdt.ui.helper.views;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
import org.sandbox.jdt.ui.helper.views.preferences.UsageViewPreferenceConstants;
/**
* The activator class controls the plug-in life cycle
*/
public class UsageViewPlugin extends AbstractUIPlugin {
// The plug-in ID
public static final String PLUGIN_ID = "sandbox_usage_view"; //$NON-NLS-1$
// The shared instance
private static UsageViewPlugin plugin;
/**
* The constructor
*/
public UsageViewPlugin() {
// default constructor
}
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static UsageViewPlugin getDefault() {
return plugin;
}
/**
* Returns an image descriptor for the image file at the given
* plug-in relative path
*
* @param path the path
* @return the image descriptor
*/
public static ImageDescriptor getImageDescriptor(String path) {
return imageDescriptorFromPlugin(PLUGIN_ID, path);
}
@Override
protected void initializeDefaultPreferences(IPreferenceStore store) {
// Set default value for show at startup preference
store.setDefault(UsageViewPreferenceConstants.SHOW_VIEW_AT_STARTUP, true);
}
}