carbidev/com.nokia.tools.variant.common.core_2.0.0.v20090225_01-11/src/com/nokia/tools/variant/common/internal/core/CommonCorePlugin.java
changeset 0 30eb2d538f02
child 1 fe41c66bacc7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/carbidev/com.nokia.tools.variant.common.core_2.0.0.v20090225_01-11/src/com/nokia/tools/variant/common/internal/core/CommonCorePlugin.java	Thu Mar 11 18:39:02 2010 +0200
@@ -0,0 +1,60 @@
+/*
+ * 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 "Symbian Foundation License v1.0"
+ * which accompanies this distribution, and is available
+ * at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+ * 
+ * Initial Contributors:
+ * Nokia Corporation - Initial contribution
+ * 
+ * Contributors:
+ * 
+ * Description: This file is part of com.nokia.tools.variant.common.core component.
+ */
+
+package com.nokia.tools.variant.common.internal.core;
+
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Plugin;
+import org.eclipse.core.runtime.Status;
+import org.osgi.framework.BundleContext;
+
+public class CommonCorePlugin extends Plugin {
+
+	public static final String PLUGIN_ID = "com.nokia.tools.variant.common.core";
+	static CommonCorePlugin instance;
+
+	public CommonCorePlugin() {
+		super();
+	}
+	
+	public static CommonCorePlugin getInstance() {
+		return instance;
+	}
+
+	@Override
+	public void start(BundleContext context) throws Exception {
+		super.start(context);
+		instance = this;
+	}
+
+	@Override
+	public void stop(BundleContext context) throws Exception {
+		super.stop(context);
+		instance = null;
+	}
+
+	public static void logWarning(String message, Throwable cause) {
+		log(IStatus.WARNING, message, cause);
+	}
+
+	public static void logError(String message, Throwable cause) {
+		log(IStatus.ERROR, message, cause);
+	}
+
+	public static void log(int status, String message, Throwable cause) {
+		instance.getLog().log(new Status(status, PLUGIN_ID, message, cause));
+	}
+}