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.event;
11:
12: import org.eclipse.osgi.util.NLS;
13:
14: public class EventMessages extends NLS {
15: private static final String BUNDLE_NAME = "org.eclipse.jdi.internal.event.EventMessages";//$NON-NLS-1$
16:
17: public static String EventImpl_Read_invalid_EventKind___1;
18: public static String EventIteratorImpl_EventSets_are_unmodifiable_1;
19: public static String EventSetImpl_Invalid_suspend_policy_encountered___1;
20: public static String EventSetImpl_EventSets_are_unmodifiable_3;
21:
22: static {
23: // load message values from bundle file
24: NLS.initializeMessages(BUNDLE_NAME, EventMessages.class);
25: }
26: }
|