blob: 71de5cb8afe059d9a0cbbac5a2f39fe02dcb798e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.util;
public class NLS {
public static String bind(String message, Object binding) {
return "";
}
public static String bind(String message, Object binding1, Object binding2) {
return "";
}
public static String bind(String message, Object[] bindings) {
return "";
}
public static void initializeMessages(final String bundleName, final Class clazz) {
}
}