/******************************************************************************* * Copyright (c) 2006 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.gef.internal; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; public class InternalGEFPlugin extends AbstractUIPlugin { private static BundleContext context; private static AbstractUIPlugin singleton; public InternalGEFPlugin() { singleton = this; } public void start(BundleContext bc) throws Exception { super.start(bc); context = bc; } public static BundleContext getContext() { return context; } public static AbstractUIPlugin getDefault() { return singleton; } /** * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext) */ public void stop(BundleContext context) throws Exception { savePluginPreferences(); super.stop(context); } }