blob: 891e5c2e887e8e866c9aa61a9cd9f139caed6eeb [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.portfolio.file.resources;
import org.eclipse.egf.common.activator.EGFAbstractPlugin;
import org.osgi.framework.BundleContext;
/**
* @author Benoit Langlois
*/
public class EGFFileResourcesActivator extends EGFAbstractPlugin {
/**
* Plug-in unique instance.
*/
private static EGFFileResourcesActivator __plugin;
/**
* Get activator shared instance.
*
* @return EGFFileResourcesActivator
*/
public static EGFFileResourcesActivator getDefault() {
return __plugin;
}
/**
* @see org.eclipse.core.runtime.Plugin#start(org.osgi.framework.BundleContext)
*/
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
__plugin = this;
}
/**
* @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
*/
@Override
public void stop(BundleContext context) throws Exception {
super.stop(context);
__plugin = null;
}
}