KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdi > internal > request > RequestMessages


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

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

18     public static String JavaDoc ClassPrepareRequestImpl_does_not_support_source_name_filters;
19
20     public static String JavaDoc EventRequestImpl___not_enabled__1;
21     public static String JavaDoc EventRequestImpl____2;
22     public static String JavaDoc EventRequestImpl_Invalid_suspend_policy_encountered___3;
23     public static String JavaDoc EventRequestImpl_Invalid_step_size_encountered___4;
24     public static String JavaDoc EventRequestImpl_Invalid_step_depth_encountered___5;
25     public static String JavaDoc EventRequestManagerImpl_EventRequest_type_of__0__is_unknown_1;
26     public static String JavaDoc EventRequestManagerImpl_Got_event_of_unknown_type_2;
27
28     static {
29         // load message values from bundle file
30
NLS.initializeMessages(BUNDLE_NAME, RequestMessages.class);
31     }
32 }
33
Popular Tags