Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xtend.typesystem.emf.ui/src/org/eclipse/xtend/typesystem/emf/ui/internal/EmfToolsLog.java')
-rw-r--r--plugins/org.eclipse.xtend.typesystem.emf.ui/src/org/eclipse/xtend/typesystem/emf/ui/internal/EmfToolsLog.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/plugins/org.eclipse.xtend.typesystem.emf.ui/src/org/eclipse/xtend/typesystem/emf/ui/internal/EmfToolsLog.java b/plugins/org.eclipse.xtend.typesystem.emf.ui/src/org/eclipse/xtend/typesystem/emf/ui/internal/EmfToolsLog.java
new file mode 100644
index 00000000..18616d07
--- /dev/null
+++ b/plugins/org.eclipse.xtend.typesystem.emf.ui/src/org/eclipse/xtend/typesystem/emf/ui/internal/EmfToolsLog.java
@@ -0,0 +1,48 @@
+/*
+ * <copyright>
+ *
+ * Copyright (c) 2005-2006 Sven Efftinge (http://www.efftinge.de) and others.
+ * 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:
+ * Sven Efftinge (http://www.efftinge.de) - Initial API and implementation
+ *
+ * </copyright>
+ */
+package org.eclipse.xtend.typesystem.emf.ui.internal;
+
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.xtend.typesystem.emf.ui.EmfToolsPlugin;
+
+public class EmfToolsLog {
+ public final static void logInfo(final String msg) {
+ log(IStatus.INFO, IStatus.OK, msg, null);
+ }
+
+ public final static void logError(final Throwable t) {
+ logError(t.getMessage(), t);
+ }
+
+ public final static void logError(final String msg, final Throwable t) {
+ t.printStackTrace();
+ log(IStatus.ERROR, IStatus.OK, msg, t);
+ }
+
+ private final static void log(final int severity, final int code, final String message, final Throwable exception) {
+ log(createStatus(severity, code, message, exception));
+ }
+
+ private final static IStatus createStatus(final int severity, final int code, final String message,
+ final Throwable exception) {
+ return new Status(severity, EmfToolsPlugin.getDefault().getBundle().getSymbolicName(), code,
+ message != null ? message : "", exception);
+ }
+
+ private final static void log(final IStatus status) {
+ EmfToolsPlugin.getDefault().getLog().log(status);
+ }
+}

Back to the top