blob: 424ff294cb8953338191d4f6442470bd9fdd102f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2008 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.event;
import org.eclipse.osgi.util.NLS;
public class LogTrackerMsg extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.event.LogMessages"; //$NON-NLS-1$
public static String Unknown_Log_level;
public static String Info;
public static String Warning;
public static String Error;
public static String Debug;
static {
// initialize resource bundles
NLS.initializeMessages(BUNDLE_NAME, LogTrackerMsg.class);
}
}