core/com.nokia.carbide.cpp/src/com/nokia/carbide/cpp/ProductPlugin.java
author wpaul
Thu, 05 Aug 2010 14:19:23 -0500
changeset 1773 8d51e542dce4
parent 1377 40401ea8b1fd
child 1888 fc9d5d520518
permissions -rw-r--r--
starting using IDE feature when product plugin loads.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
     1
/*
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
     3
* All rights reserved.
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
     4
* This component and the accompanying materials are made available
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
     5
* under the terms of the License "Eclipse Public License v1.0"
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
     6
* which accompanies this distribution, and is available
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
     8
*
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
     9
* Initial Contributors:
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
    10
* Nokia Corporation - initial contribution.
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
    11
*
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
    12
* Contributors:
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
    13
*
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
    14
* Description: 
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
    15
*
6ef327765a4e added copyright
wpaul
parents: 2
diff changeset
    16
*/
2
cawthron
parents:
diff changeset
    17
package com.nokia.carbide.cpp;
cawthron
parents:
diff changeset
    18
cawthron
parents:
diff changeset
    19
import org.eclipse.jface.resource.ImageDescriptor;
1377
40401ea8b1fd move p2 policy code to discovery plugin for now + add system property for disabling unsigned check
dadubrow
parents: 1373
diff changeset
    20
import org.eclipse.ui.plugin.AbstractUIPlugin;
2
cawthron
parents:
diff changeset
    21
import org.osgi.framework.BundleContext;
cawthron
parents:
diff changeset
    22
1773
8d51e542dce4 starting using IDE feature when product plugin loads.
wpaul
parents: 1377
diff changeset
    23
import com.nokia.carbide.cpp.internal.featureTracker.FeatureUseTrackerConsts;
8d51e542dce4 starting using IDE feature when product plugin loads.
wpaul
parents: 1377
diff changeset
    24
import com.nokia.carbide.cpp.internal.featureTracker.FeatureUseTrackerPlugin;
8d51e542dce4 starting using IDE feature when product plugin loads.
wpaul
parents: 1377
diff changeset
    25
2
cawthron
parents:
diff changeset
    26
/**
cawthron
parents:
diff changeset
    27
 * The main plugin class to be used in the desktop.
cawthron
parents:
diff changeset
    28
 */
cawthron
parents:
diff changeset
    29
public class ProductPlugin extends AbstractUIPlugin {
cawthron
parents:
diff changeset
    30
cawthron
parents:
diff changeset
    31
	//The shared instance.
cawthron
parents:
diff changeset
    32
	private static ProductPlugin plugin;
cawthron
parents:
diff changeset
    33
	
cawthron
parents:
diff changeset
    34
	/**
cawthron
parents:
diff changeset
    35
	 * The constructor.
cawthron
parents:
diff changeset
    36
	 */
cawthron
parents:
diff changeset
    37
	public ProductPlugin() {
cawthron
parents:
diff changeset
    38
		plugin = this;
cawthron
parents:
diff changeset
    39
	}
cawthron
parents:
diff changeset
    40
cawthron
parents:
diff changeset
    41
	/**
cawthron
parents:
diff changeset
    42
	 * This method is called upon plug-in activation
cawthron
parents:
diff changeset
    43
	 */
cawthron
parents:
diff changeset
    44
	public void start(BundleContext context) throws Exception {
cawthron
parents:
diff changeset
    45
		super.start(context);
1773
8d51e542dce4 starting using IDE feature when product plugin loads.
wpaul
parents: 1377
diff changeset
    46
8d51e542dce4 starting using IDE feature when product plugin loads.
wpaul
parents: 1377
diff changeset
    47
		FeatureUseTrackerPlugin.getFeatureUseProxy().startUsingFeature(FeatureUseTrackerConsts.CARBIDE_IDE);
2
cawthron
parents:
diff changeset
    48
	}
cawthron
parents:
diff changeset
    49
cawthron
parents:
diff changeset
    50
	/**
cawthron
parents:
diff changeset
    51
	 * This method is called when the plug-in is stopped
cawthron
parents:
diff changeset
    52
	 */
cawthron
parents:
diff changeset
    53
	public void stop(BundleContext context) throws Exception {
cawthron
parents:
diff changeset
    54
		super.stop(context);
cawthron
parents:
diff changeset
    55
		plugin = null;
cawthron
parents:
diff changeset
    56
	}
cawthron
parents:
diff changeset
    57
cawthron
parents:
diff changeset
    58
	/**
cawthron
parents:
diff changeset
    59
	 * Returns the shared instance.
cawthron
parents:
diff changeset
    60
	 */
cawthron
parents:
diff changeset
    61
	public static ProductPlugin getDefault() {
cawthron
parents:
diff changeset
    62
		return plugin;
cawthron
parents:
diff changeset
    63
	}
cawthron
parents:
diff changeset
    64
cawthron
parents:
diff changeset
    65
	/**
cawthron
parents:
diff changeset
    66
	 * Returns an image descriptor for the image file at the given
cawthron
parents:
diff changeset
    67
	 * plug-in relative path.
cawthron
parents:
diff changeset
    68
	 *
cawthron
parents:
diff changeset
    69
	 * @param path the path
cawthron
parents:
diff changeset
    70
	 * @return the image descriptor
cawthron
parents:
diff changeset
    71
	 */
cawthron
parents:
diff changeset
    72
	public static ImageDescriptor getImageDescriptor(String path) {
cawthron
parents:
diff changeset
    73
		return AbstractUIPlugin.imageDescriptorFromPlugin("com.nokia.carbide.cpp", path); //$NON-NLS-1$
cawthron
parents:
diff changeset
    74
	}
cawthron
parents:
diff changeset
    75
}