blob: 6beb1ac65364684347cbe1c1bee30962f3512872 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.emf.ui;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.mylyn.context.ui.IContextUiStartup;
import org.eclipse.mylyn.monitor.ui.MonitorUi;
import org.osgi.framework.BundleContext;
/**
* @author Benjamin Muskalla
*/
public class EmfUiBridgePlugin extends Plugin {
public static class EmfUiBrideStartup implements IContextUiStartup {
public void lazyStartup() {
EmfUiBridgePlugin.getDefault().lazyStart();
}
}
public static final String ID_PLUGIN = "org.eclipse.mylyn.emf.ui"; //$NON-NLS-1$
private static EmfUiBridgePlugin INSTANCE;
public static EmfUiBridgePlugin getDefault() {
return INSTANCE;
}
private EmfEditingMonitor emfEditingMonitor;
public EmfUiBridgePlugin() {
}
private void lazyStart() {
emfEditingMonitor = new EmfEditingMonitor();
MonitorUi.getSelectionMonitors().add(emfEditingMonitor);
}
private void lazyStop() {
if (emfEditingMonitor != null) {
MonitorUi.getSelectionMonitors().remove(emfEditingMonitor);
}
}
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
INSTANCE = this;
}
@Override
public void stop(BundleContext context) throws Exception {
lazyStop();
super.stop(context);
INSTANCE = null;
}
}