blob: 3cd780726a7647caa6cd3a0ee5a281f11c8fccd2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.languages.internal.javascript.debug.ui;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* Activator for the UI bundle
*
* @since 0.9
*/
public class JSDIUIActivator extends AbstractUIPlugin {
/**
* Constructor
*/
public JSDIUIActivator() {
}
/* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
JSDIImageRegistry.dispose();
super.stop(context);
}
}