core/com.nokia.carbide.cpp/src/com/nokia/carbide/cpp/ProductPlugin.java
author wpaul
Wed, 25 Mar 2009 12:24:24 -0500
changeset 9 6ef327765a4e
parent 2 d760517a8095
child 127 c937102a5510
permissions -rw-r--r--
added copyright
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.ui.plugin.*;
cawthron
parents:
diff changeset
    20
import org.eclipse.jface.resource.ImageDescriptor;
cawthron
parents:
diff changeset
    21
import org.osgi.framework.BundleContext;
cawthron
parents:
diff changeset
    22
cawthron
parents:
diff changeset
    23
/**
cawthron
parents:
diff changeset
    24
 * The main plugin class to be used in the desktop.
cawthron
parents:
diff changeset
    25
 */
cawthron
parents:
diff changeset
    26
public class ProductPlugin extends AbstractUIPlugin {
cawthron
parents:
diff changeset
    27
cawthron
parents:
diff changeset
    28
	//The shared instance.
cawthron
parents:
diff changeset
    29
	private static ProductPlugin plugin;
cawthron
parents:
diff changeset
    30
	
cawthron
parents:
diff changeset
    31
	/**
cawthron
parents:
diff changeset
    32
	 * The constructor.
cawthron
parents:
diff changeset
    33
	 */
cawthron
parents:
diff changeset
    34
	public ProductPlugin() {
cawthron
parents:
diff changeset
    35
		plugin = this;
cawthron
parents:
diff changeset
    36
	}
cawthron
parents:
diff changeset
    37
cawthron
parents:
diff changeset
    38
	/**
cawthron
parents:
diff changeset
    39
	 * This method is called upon plug-in activation
cawthron
parents:
diff changeset
    40
	 */
cawthron
parents:
diff changeset
    41
	public void start(BundleContext context) throws Exception {
cawthron
parents:
diff changeset
    42
		super.start(context);
cawthron
parents:
diff changeset
    43
	}
cawthron
parents:
diff changeset
    44
cawthron
parents:
diff changeset
    45
	/**
cawthron
parents:
diff changeset
    46
	 * This method is called when the plug-in is stopped
cawthron
parents:
diff changeset
    47
	 */
cawthron
parents:
diff changeset
    48
	public void stop(BundleContext context) throws Exception {
cawthron
parents:
diff changeset
    49
		super.stop(context);
cawthron
parents:
diff changeset
    50
		plugin = null;
cawthron
parents:
diff changeset
    51
	}
cawthron
parents:
diff changeset
    52
cawthron
parents:
diff changeset
    53
	/**
cawthron
parents:
diff changeset
    54
	 * Returns the shared instance.
cawthron
parents:
diff changeset
    55
	 */
cawthron
parents:
diff changeset
    56
	public static ProductPlugin getDefault() {
cawthron
parents:
diff changeset
    57
		return plugin;
cawthron
parents:
diff changeset
    58
	}
cawthron
parents:
diff changeset
    59
cawthron
parents:
diff changeset
    60
	/**
cawthron
parents:
diff changeset
    61
	 * Returns an image descriptor for the image file at the given
cawthron
parents:
diff changeset
    62
	 * plug-in relative path.
cawthron
parents:
diff changeset
    63
	 *
cawthron
parents:
diff changeset
    64
	 * @param path the path
cawthron
parents:
diff changeset
    65
	 * @return the image descriptor
cawthron
parents:
diff changeset
    66
	 */
cawthron
parents:
diff changeset
    67
	public static ImageDescriptor getImageDescriptor(String path) {
cawthron
parents:
diff changeset
    68
		return AbstractUIPlugin.imageDescriptorFromPlugin("com.nokia.carbide.cpp", path); //$NON-NLS-1$
cawthron
parents:
diff changeset
    69
	}
cawthron
parents:
diff changeset
    70
}