blob: 2eb64f65d01f2a6c7cd4ecc3d65f1e04bdc4ed4e [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2010 Thales Corporate Services S.A.S.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* 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;
}
}