KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ant > internal > ui > editor > outline > AntOutlineMessages


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  * John-Mason P. Shackelford (john-mason.shackelford@pearson.com) - bug 53547
10  **********************************************************************/

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

18     public static String JavaDoc AntEditorContentOutlinePage_Open_With_1;
19
20     public static String JavaDoc FilterInternalTargetsAction_0;
21     public static String JavaDoc FilterImportedElementsAction_0;
22     public static String JavaDoc FilterPropertiesAction_0;
23
24     public static String JavaDoc FilterTopLevelAction_0;
25
26     public static String JavaDoc ToggleSortAntOutlineAction_0;
27
28     public static String JavaDoc ToggleLinkWithEditorAction_0;
29     public static String JavaDoc ToggleLinkWithEditorAction_1;
30     public static String JavaDoc ToggleLinkWithEditorAction_2;
31
32     static {
33         // load message values from bundle file
34
NLS.initializeMessages(BUNDLE_NAME, AntOutlineMessages.class);
35     }
36 }
Popular Tags