KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdi > internal > jdwp > JDWPMessages


1 /**********************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others. All rights reserved. This
3  * program and the accompanying materials are made available under the terms of
4  * the Eclipse Public License v1.0 which accompanies this distribution, and is
5  * available at http://www.eclipse.org/legal/epl-v10.html
6  *
7  * Contributors:
8  * IBM - Initial API and implementation
9  **********************************************************************/

10 package org.eclipse.jdi.internal.jdwp;
11
12 import org.eclipse.osgi.util.NLS;
13
14 public class JDWPMessages extends NLS {
15     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.jdi.internal.jdwp.JDWPMessages";//$NON-NLS-1$
16

17     public static String JavaDoc JdwpString_Second_byte_input_does_not_match_UTF_Specification_1;
18     public static String JavaDoc JdwpString_Second_or_third_byte_input_does_not_mach_UTF_Specification_2;
19     public static String JavaDoc JdwpString_Input_does_not_match_UTF_Specification_3;
20     public static String JavaDoc JdwpString_str_is_null_4;
21
22     static {
23         // load message values from bundle file
24
NLS.initializeMessages(BUNDLE_NAME, JDWPMessages.class);
25     }
26 }
Popular Tags