1 /*******************************************************************************
2  * Copyright (c) 2000, 2009 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  * IBM - Initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.ant.internal.launching.runtime.logger;
15 
16 import org.eclipse.osgi.util.NLS;
17 
18 public class RuntimeMessages extends NLS {
19 	private static final String BUNDLE_NAME = "org.eclipse.ant.internal.launching.runtime.logger.RuntimeMessages";//$NON-NLS-1$
20 
21 	public static String NullBuildLogger_1;
22 	public static String AntProcessBuildLogger_Total_time;
23 	public static String AntProcessBuildLogger__minutes_2;
24 	public static String AntProcessBuildLogger__minute_3;
25 	public static String AntProcessBuildLogger__seconds_4;
26 	public static String AntProcessBuildLogger__second_5;
27 	public static String AntProcessBuildLogger__milliseconds_6;
28 
29 	public static String AntProcessDebugBuildLogger_1;
30 
31 	static {
32 		// load message values from bundle file
NLS.initializeMessages(BUNDLE_NAME, RuntimeMessages.class)33 		NLS.initializeMessages(BUNDLE_NAME, RuntimeMessages.class);
34 	}
35 }