/******************************************************************************* * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is 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: * Exadel, Inc. and Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.hibernate.ui.xml; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.ui.plugin.AbstractUIPlugin; public class HibernateUIXMLPlugin extends AbstractUIPlugin { public static final String PLUGIN_ID = "org.jboss.tools.hibernate.xml.ui"; //$NON-NLS-1$ static HibernateUIXMLPlugin INSTANCE = null; public HibernateUIXMLPlugin() { super(); INSTANCE = this; } public static void log(String msg) { if(isDebugEnabled()) INSTANCE.getLog().log(new Status(Status.INFO, PLUGIN_ID, Status.OK, msg, null)); } public static void log(IStatus status) { if(isDebugEnabled() || !status.isOK()) INSTANCE.getLog().log(status); } public static void log(String message, Throwable exception) { INSTANCE.getLog().log(new Status(Status.ERROR, PLUGIN_ID, Status.OK, message, exception)); } public static void log(Exception ex) { INSTANCE.getLog().log(new Status(Status.ERROR, PLUGIN_ID, Status.OK, Messages.HibernateUIXMLPlugin_NoExceptionMessage, ex)); } public static boolean isDebugEnabled() { return INSTANCE.isDebugging(); } public static HibernateUIXMLPlugin getDefault() { return INSTANCE; } }