KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ant > internal > core > InternalCoreAntMessages


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.core;
11
12 import org.eclipse.osgi.util.NLS;
13
14 public class InternalCoreAntMessages extends NLS {
15     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ant.internal.core.InternalCoreAntMessages";//$NON-NLS-1$
16

17     public static String JavaDoc AntCorePreferences_Malformed_URL__1;
18     public static String JavaDoc AntCorePreferences_Library_not_specified_for___0__4;
19     public static String JavaDoc AntCorePreferences_No_library_for_task;
20     public static String JavaDoc AntCorePreferences_No_library_for_type;
21     public static String JavaDoc AntCorePreferences_8;
22     public static String JavaDoc AntCorePreferences_6;
23     public static String JavaDoc AntCorePreferences_0;
24     public static String JavaDoc AntCorePreferences_1;
25
26     public static String JavaDoc AntRunner_Could_not_find_one_or_more_classes__Please_check_the_Ant_classpath__1;
27     public static String JavaDoc AntRunner_Could_not_find_one_or_more_classes__Please_check_the_Ant_classpath__2;
28     public static String JavaDoc AntRunner_Build_Failed__3;
29     public static String JavaDoc AntRunner_Already_in_progess;
30
31     static {
32         // load message values from bundle file
33
NLS.initializeMessages(BUNDLE_NAME, InternalCoreAntMessages.class);
34     }
35 }
Popular Tags