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