Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d3032499ce54b7a866d1a386879980385ce567d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 *  Copyright (c) 2007, 2009 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 Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.persistence;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.p2.persistence.messages"; //$NON-NLS-1$

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

	public static String XMLParser_No_SAX_Parser;
	public static String XMLParser_Error_At_Line;
	public static String XMLParser_Error_At_Line_Column;
	public static String XMLParser_Error_At_Name_Line;
	public static String XMLParser_Error_At_Name_Line_Column;
	public static String XMLParser_Missing_Required_Attribute;
	public static String XMLParser_Illegal_Value_For_Attribute;
	public static String XMLParser_Duplicate_Element;

	public static String io_failedRead;
	public static String io_IncompatibleVersion;
	public static String io_parseError;

}

Back to the top