Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 8c881f94f71f2e82db5c64f5185d7b44ba6b9d58 (plain) (tree)



















                                                                                                                              
                                                              

                                                       




                                                  
                                                    



                                                            
 




                                                                    
/**********************************************************************
 * Copyright (c) 2008 IBM Corporation and others. All rights reserved.   This
 * program and the accompanying materials are made available under the terms of
 * the Eclipse Public License v1.0 which accompanies this distribution, and is
 * available at http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors: 
 * IBM - Initial API and implementation
 **********************************************************************/
package org.eclipse.equinox.internal.frameworkadmin.equinox;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.frameworkadmin.equinox.messages";//$NON-NLS-1$

	public static String exception_inputFileIsDirectory;
	public static String exception_fwConfigLocationName;
	public static String exception_failedToCreateDir;
	public static String exception_failedToRename;
	public static String exception_launcherLocationNotSet;
	public static String exception_fileURLExpected;
	public static String exception_bundleManifest;

	public static String log_configFile;
	public static String log_configProps;
	public static String log_renameSuccessful;
	public static String log_fwConfigSave;
	public static String log_launcherConfigSave;
	public static String log_shared_config_url;
	public static String log_shared_config_relative_url;
	public static String log_shared_config_file_missing;
	public static String log_failed_reading_properties;

	static {
		// load message values from bundle file
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}
}

Back to the top