blob: 9fdd5f4ffaf349df8b0c58a0e16f38fbc7d1a2df [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Mylyn project committers and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.mylyn.internal.ide.ui;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.mylyn.internal.context.ui.AbstractContextUiPlugin;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* @author Mik Kersten
*/
public class IdeUiBridgePlugin extends AbstractContextUiPlugin {
public static final String PLUGIN_ID = "org.eclipse.mylyn.ide";
private static IdeUiBridgePlugin INSTANCE;
public static final ImageDescriptor EDGE_REF_XML = getImageDescriptor("icons/elcl16/edge-ref-xml.gif");
public IdeUiBridgePlugin() {
INSTANCE = this;
}
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
}
@Override
protected void lazyStart(IWorkbench workbench) {
// ignore
}
@Override
protected void lazyStop() {
// ignore
}
@Override
public void stop(BundleContext context) throws Exception {
super.stop(context);
}
public static IdeUiBridgePlugin getDefault() {
return INSTANCE;
}
/**
* 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 AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.mylyn.ide", path);
}
}