/******************************************************************************* * Copyright (c) 2006, 2009 University of Edinburgh. * All rights reserved. This program and the accompanying materials * are made available under the terms of the BSD Licence, which * accompanies this feature and can be downloaded from * http://groups.inf.ed.ac.uk/pepa/update/licence.txt *******************************************************************************/ package uk.ac.ed.inf.common; import org.eclipse.core.runtime.Plugin; import org.osgi.framework.BundleContext; /** * This plug-in exposes common functionality across all the projects hosted at * the University of Edinburgh. * */ public class CommonPlugin extends Plugin { // The plug-in ID public static final String PLUGIN_ID = "uk.ac.ed.inf.common"; // The shared instance private static CommonPlugin plugin; /** * The constructor */ public CommonPlugin() { } /* * (non-Javadoc) * * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext) */ public void start(BundleContext context) throws Exception { super.start(context); plugin = this; } /* * (non-Javadoc) * * @see org.eclipse.core.runtime.Plugin#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 CommonPlugin getDefault() { return plugin; } }