Project

General

Profile

Download (895 Bytes) Statistics
| Branch: | Tag: | Revision:
1
package eu.etaxonomy.taxeditor.singlesource.store.internal;
2

    
3
import org.apache.log4j.Logger;
4
import org.eclipse.jface.resource.ImageDescriptor;
5
import org.eclipse.jface.resource.ImageRegistry;
6
import org.eclipse.ui.plugin.AbstractUIPlugin;
7
import org.osgi.framework.BundleContext;
8

    
9
import eu.etaxonomy.taxeditor.preference.PreferencesUtil;
10

    
11
/**
12
 * The activator class controls the plug-in life cycle
13
 *
14
 * @author n.hoffmann
15
 * @version $Id: $
16
 */
17
public class TaxeditorStorePluginImpl extends TaxeditorStorePlugin {
18
	private static final Logger logger = Logger.getLogger(TaxeditorStorePluginImpl.class);
19

    
20
	/*
21
	 * (non-Javadoc)
22
	 * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
23
	 */
24
	/** {@inheritDoc} */
25
	public void start(BundleContext context) throws Exception {
26
		super.start(context);
27
		logger.debug("TaxeditorStorePlugin.start(BundleContext)");
28
	}
29

    
30
}
    (1-1/1)