KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ant > internal > ui > antsupport > AntSupportMessages


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  **********************************************************************/

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

17     public static String JavaDoc AntInputHandler_Ant_Input_Request_1;
18     public static String JavaDoc AntInputHandler_Invalid_input_2;
19     public static String JavaDoc AntInputHandler_Unable_to_respond_to__input__request_4;
20     public static String JavaDoc AntInputHandler_5;
21
22     public static String JavaDoc NullBuildLogger_1;
23     public static String JavaDoc AntProcessBuildLogger_Total_time;
24     public static String JavaDoc AntProcessBuildLogger__minutes_2;
25     public static String JavaDoc AntProcessBuildLogger__minute_3;
26     public static String JavaDoc AntProcessBuildLogger__seconds_4;
27     public static String JavaDoc AntProcessBuildLogger__second_5;
28     public static String JavaDoc AntProcessBuildLogger__milliseconds_6;
29     
30     public static String JavaDoc AntProcessDebugBuildLogger_1;
31
32     static {
33         // load message values from bundle file
34
NLS.initializeMessages(BUNDLE_NAME, AntSupportMessages.class);
35     }
36 }
Popular Tags