Project

General

Profile

Download (1.9 KB) Statistics
| Branch: | Tag: | Revision:
1
package eu.etaxonomy.taxeditor.store.internal;
2

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

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

    
10
/**
11
 * The activator class controls the plug-in life cycle
12
 *
13
 * @author n.hoffmann
14
 * @version $Id: $
15
 */
16
public class TaxeditorStorePlugin extends AbstractUIPlugin {
17
	
18
	// The plug-in ID
19
	/** Constant <code>PLUGIN_ID="eu.etaxonomy.taxeditor.editor"</code> */
20
	public static final String PLUGIN_ID = "eu.etaxonomy.taxeditor.editor";
21

    
22
	// The shared instance
23
	private static TaxeditorStorePlugin plugin;
24
	
25
	/**
26
	 * The constructor
27
	 */
28
	public TaxeditorStorePlugin() {
29
	}
30

    
31
	/*
32
	 * (non-Javadoc)
33
	 * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
34
	 */
35
	/** {@inheritDoc} */
36
	public void start(BundleContext context) throws Exception {
37
		super.start(context);
38
		
39
		plugin = this;
40

    
41
		PreferencesUtil.setDefaults();
42
	}
43

    
44
	/*
45
	 * (non-Javadoc)
46
	 * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
47
	 */
48
	/** {@inheritDoc} */
49
	public void stop(BundleContext context) throws Exception {
50
		plugin = null;
51
		super.stop(context);
52
	}
53

    
54
	/**
55
	 * Returns the shared instance
56
	 *
57
	 * @return the shared instance
58
	 */
59
	public static TaxeditorStorePlugin getDefault() {
60
		return plugin;
61
	}
62
	
63
	/**
64
	 * Returns an image descriptor for the image file at the given
65
	 * plug-in relative path
66
	 *
67
	 * @param path the path
68
	 * @return the image descriptor
69
	 */
70
	public static ImageDescriptor getImageDescriptor(String path) {
71
		return imageDescriptorFromPlugin(PLUGIN_ID, path);
72
	}
73
	
74
	
75
	/**
76
	 * Exposes this normally protected method.
77
	 *
78
	 * @return a {@link org.eclipse.jface.resource.ImageRegistry} object.
79
	 */
80
	public ImageRegistry createImageRegistry(){
81
		return super.createImageRegistry();
82
	}
83
}
    (1-1/1)