blob: 11dcb9a09da870d94c48f6fcb220077b6e63548a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.debug.internal.jsd2.transport;
import org.eclipse.osgi.util.NLS;
/**
*
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.wst.jsdt.debug.internal.jsd2.transport.messages"; //$NON-NLS-1$
public static String EventPacketImpl_cannot_create_event_packet_null_event_name;
public static String PacketImpl_cannot_create_packet_null_json;
public static String PacketImpl_cannot_create_packet_null_type;
public static String RequestPacketImpl_cannot_create_request_packet_null_command;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}