blob: f4aec9f0c9f44dd841c37fe7c698ab798bd9270a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 Google, Inc and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Stefan Xenos (Google) - Initial implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.nd.util;
import org.eclipse.core.runtime.ILog;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.core.runtime.Status;
import org.eclipse.jdt.core.JavaCore;
/**
* @noreference This class is not intended to be referenced by clients
*/
/* package */ class Package {
public static String PLUGIN_ID = JavaCore.PLUGIN_ID;
/**
* @noreference This method is not intended to be referenced by clients.
*/
public static void log(Throwable e) {
String msg= e.getMessage();
if (msg == null) {
log("Error", e); //$NON-NLS-1$
} else {
log("Error: " + msg, e); //$NON-NLS-1$
}
}
/**
* @noreference This method is not intended to be referenced by clients.
*/
public static void log(String message, Throwable e) {
log(createStatus(message, e));
}
/**
* @noreference This method is not intended to be referenced by clients.
*/
public static IStatus createStatus(String msg, Throwable e) {
return new Status(IStatus.ERROR, PLUGIN_ID, msg, e);
}
/**
* @noreference This method is not intended to be referenced by clients.
*/
public static IStatus createStatus(String msg) {
return new Status(IStatus.ERROR, PLUGIN_ID, msg);
}
/**
* @noreference This method is not intended to be referenced by clients.
*
* Returns the appropriate ILog for this package
*/
public static ILog getLog() {
Plugin plugin = JavaCore.getPlugin();
if (plugin == null) {
return null;
}
return plugin.getLog();
}
/**
* @noreference This method is not intended to be referenced by clients.
*/
public static void log(IStatus status) {
getLog().log(status);
}
}