package org.argeo.slc.client.ui; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.jface.resource.ImageRegistry; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class ClientUiPlugin extends AbstractUIPlugin { // The plug-in ID public static final String PLUGIN_ID = "org.argeo.slc.client.ui"; // The shared instance private static ClientUiPlugin plugin; private BundleContext bundleContext; /** * The constructor */ public ClientUiPlugin() { } /* * (non-Javadoc) * * @see * org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext * ) */ public void start(BundleContext context) throws Exception { super.start(context); this.bundleContext = context; plugin = this; } /* * (non-Javadoc) * * @see * org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext * ) */ public void stop(BundleContext context) throws Exception { plugin = null; super.stop(context); } /** * Returns the shared instance * * @return the shared instance */ public static ClientUiPlugin 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 initializeImageRegistry(ImageRegistry reg) { reg.put("agent", getImageDescriptor("icons/computer.png")); reg.put("executionModule", getImageDescriptor("icons/archive.png")); reg.put("folder", getImageDescriptor("icons/folder.png")); reg.put("flow", getImageDescriptor("icons/system.png")); reg.put("processes", getImageDescriptor("icons/processes.gif")); reg.put("passedTest", getImageDescriptor("icons/passed.gif")); reg.put("failedTest", getImageDescriptor("icons/error.gif")); } public BundleContext getBundleContext() { return bundleContext; } }