blob: aa9822dd06a891cae3da509d9bcd05bb7730030d [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-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.eclipse.resources.mgt;
import org.eclipse.egf.common.activator.EGFAbstractPlugin;
import org.osgi.framework.BundleContext;
/**
* @author Matthieu Helleboid
*
*/
public class Activator extends EGFAbstractPlugin {
/**
* Shared instance.
*/
protected static EGFAbstractPlugin __plugin;
/**
* Get shared instance.
*
* @return __plugin
*/
public static EGFAbstractPlugin getDefault() {
return __plugin;
}
@Override
public void start(BundleContext context_p) throws Exception {
super.start(context_p);
__plugin = this;
}
@Override
public void stop(BundleContext context_p) throws Exception {
super.stop(context_p);
__plugin = null;
}
}