01: /**********************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others. All rights reserved. This
03: * program and the accompanying materials are made available under the terms of
04: * the Eclipse Public License v1.0 which accompanies this distribution, and is
05: * available at http://www.eclipse.org/legal/epl-v10.html
06: *
07: * Contributors:
08: * IBM - Initial API and implementation
09: **********************************************************************/package org.eclipse.jdi.internal.jdwp;
10:
11: import org.eclipse.osgi.util.NLS;
12:
13: public class JDWPMessages extends NLS {
14: private static final String BUNDLE_NAME = "org.eclipse.jdi.internal.jdwp.JDWPMessages";//$NON-NLS-1$
15:
16: public static String JdwpString_Second_byte_input_does_not_match_UTF_Specification_1;
17: public static String JdwpString_Second_or_third_byte_input_does_not_mach_UTF_Specification_2;
18: public static String JdwpString_Input_does_not_match_UTF_Specification_3;
19: public static String JdwpString_str_is_null_4;
20:
21: static {
22: // load message values from bundle file
23: NLS.initializeMessages(BUNDLE_NAME, JDWPMessages.class);
24: }
25: }
|