blob: 08e64f370b7dc3e0834cb3d970e59d60fdb1bf67 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Red Hat, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Red Hat Inc. - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.wst.jsdt.js.common;
import org.eclipse.osgi.util.NLS;
/**
* @author "Ilya Buziuk (ibuziuk)"
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = Messages.class.getName().toString().toLowerCase();
public static String LaunchError_Title;
public static String LaunchError_Message;
public static String LaunchTab_Main;
public static String LaunchTab_Tasks;
public static String LaunchTab_BuildFile;
public static String LaunchTab_Browse;
public static String LaunchTab_DialogTitle;
public static String LaunchTab_DialogMessage;
public static String LaunchTab_Parameters;
static {
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}