Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/internal/XtendLog.java')
-rw-r--r--plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/internal/XtendLog.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/internal/XtendLog.java b/plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/internal/XtendLog.java
new file mode 100644
index 00000000..1660d404
--- /dev/null
+++ b/plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/internal/XtendLog.java
@@ -0,0 +1,43 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 committers of openArchitectureWare 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:
+ * committers of openArchitectureWare - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.xtend.ui.internal;
+
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.xtend.ui.XtendEditorPlugin;
+
+public class XtendLog {
+ 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) {
+ 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, XtendEditorPlugin.getDefault().getBundle().getSymbolicName(), code,
+ message != null ? message : "", exception);
+ }
+
+ private final static void log(final IStatus status) {
+ XtendEditorPlugin.getDefault().getLog().log(status);
+ }
+}

Back to the top