Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 57b96c63128ae7e88ad92c379d018c49c7262aec (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
38
39
40
41
42
43
44
45
46
/*******************************************************************************
 * Copyright (c) 2010, 2011 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.coordinator;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.equinox.coordinator.messages"; //$NON-NLS-1$
	public static String NullParameter;
	public static String Deadlock;
	public static String InvalidCoordinationName;
	public static String MissingFailureCause;
	public static String InvalidTimeout;
	public static String InterruptedTimeoutExtension;
	public static String EndingThreadNotSame;
	public static String LockInterrupted;
	public static String ParticipantEndedError;
	public static String CoordinationPartiallyEnded;
	public static String ParticipantFailedError;
	public static String CoordinationFailed;
	public static String CoordinationEnded;
	public static String CoordinationTimedOutError;
	public static String MaxCoordinationIdExceeded;
	public static String GetCoordinationNotPermitted;
	public static String CoordinatorShutdown;
	public static String CoordinationAlreadyExists;
	public static String CanceledTaskNotPurged;
	public static String OrphanedCoordinationError;

	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
		// noop
	}
}

Back to the top