diff -r 000000000000 -r fb279309251b core/com.nokia.cpp.utils.ui/src/com/nokia/cpp/utils/ui/noexport/UtilsUIPlugin.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/com.nokia.cpp.utils.ui/src/com/nokia/cpp/utils/ui/noexport/UtilsUIPlugin.java Fri Apr 03 23:33:03 2009 +0100 @@ -0,0 +1,81 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ +package com.nokia.cpp.utils.ui.noexport; + +import org.eclipse.core.runtime.IStatus; +import org.eclipse.ui.plugin.AbstractUIPlugin; +import org.osgi.framework.BundleContext; + +import com.nokia.cpp.internal.api.utils.core.Logging; + +/** + * The activator class controls the plug-in life cycle + */ +public class UtilsUIPlugin extends AbstractUIPlugin { + + // The plug-in ID + public static final String PLUGIN_ID = "com.nokia.carbide.cpp.utils.ui"; + + // The shared instance + private static UtilsUIPlugin plugin; + + /** + * The constructor + */ + public UtilsUIPlugin() { + } + + /* + * (non-Javadoc) + * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) + */ + public void start(BundleContext context) throws Exception { + super.start(context); + plugin = this; + } + + /* + * (non-Javadoc) + * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) + */ + public void stop(BundleContext context) throws Exception { + plugin = null; + super.stop(context); + } + + /** + * Returns the shared instance + * + * @return the shared instance + */ + public static UtilsUIPlugin getDefault() { + return plugin; + } + + static public void log(IStatus status) { + Logging.log(plugin, status); + } + + static public void log(Throwable thr) { + Logging.log(plugin, Logging.newStatus(plugin, thr)); + } + + static public void log(Throwable thr, String msg) { + Logging.log(plugin, Logging.newStatus(plugin, IStatus.ERROR, msg, thr)); + } + +}