Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 77598ea51ad8d254ba131b57c199544fe02ce0d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*******************************************************************************
 * Copyright (c) 2006, 2007 Oracle. 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:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.db.internal;

import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;

/**
 * The main plugin class to be used in the desktop.
 */
public class JptDbPlugin extends Plugin {
	private ConnectionProfileRepository connectionProfileRepository;

	// The shared instance
	private static JptDbPlugin plugin;

	/**
	 * Returns the shared instance
	 */
	public static JptDbPlugin getDefault() {
		return plugin;
	}
	
	/**
	 * The constructor
	 */
	public JptDbPlugin() {
		super();
		plugin = this;
	}

	/**
	 * This method is called upon plug-in activation
	 */
	public void start(BundleContext context) throws Exception {
		super.start(context);
		this.connectionProfileRepository = ConnectionProfileRepository.instance();
        this.connectionProfileRepository.initializeListeners();
	}

	/**
	 * This method is called when the plug-in is stopped
	 */
	public void stop(BundleContext context) throws Exception {
		this.connectionProfileRepository.disposeListeners();
		this.connectionProfileRepository = null;
		plugin = null;
		super.stop(context);
	}


	public ConnectionProfileRepository getConnectionProfileRepository() {
		return this.connectionProfileRepository;
	}
}

Back to the top