KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > internal > ui > actions > breakpointGroups > BreakpointGroupMessages


1 /*******************************************************************************
2  * Copyright (c) 2004, 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.debug.internal.ui.actions.breakpointGroups;
12
13 import org.eclipse.osgi.util.NLS;
14
15 public class BreakpointGroupMessages extends NLS {
16     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.debug.internal.ui.actions.breakpointGroups.BreakpointGroupMessages";//$NON-NLS-1$
17
//
18
// Copyright (c) 2004, 2005 IBM Corporation and others.
19
// All rights reserved. This program and the accompanying materials
20
// are made available under the terms of the Eclipse Public License v1.0
21
// which accompanies this distribution, and is available at
22
// http://www.eclipse.org/legal/epl-v10.html
23
//
24
// Contributors:
25
// IBM Corporation - initial API and implementation
26
//
27

28     public static String JavaDoc GroupBreakpointsByAction_0;
29     public static String JavaDoc GroupBreakpointsByAction_1;
30     public static String JavaDoc GroupBreakpointsByDialog_0;
31     public static String JavaDoc GroupBreakpointsByDialog_1;
32     public static String JavaDoc GroupBreakpointsByDialog_2;
33     public static String JavaDoc GroupBreakpointsByDialog_3;
34     public static String JavaDoc GroupBreakpointsByDialog_4;
35     public static String JavaDoc GroupBreakpointsByDialog_5;
36     public static String JavaDoc GroupBreakpointsByDialog_6;
37     public static String JavaDoc GroupBreakpointsByDialog_7;
38     public static String JavaDoc CopyBreakpointsAction_0;
39     public static String JavaDoc CopyBreakpointsAction_1;
40     public static String JavaDoc CopyBreakpointsAction_2;
41     public static String JavaDoc CopyBreakpointsAction_3;
42     public static String JavaDoc PasteBreakpointsAction_0;
43     public static String JavaDoc PasteBreakpointsAction_1;
44     public static String JavaDoc RemoveFromWorkingSetAction_0;
45
46     public static String JavaDoc SelectBreakpointWorkingsetDialog_0;
47
48     public static String JavaDoc SetDefaultBreakpointGroupAction_0;
49
50     static {
51         // load message values from bundle file
52
NLS.initializeMessages(BUNDLE_NAME, BreakpointGroupMessages.class);
53     }
54 }
55
Popular Tags