Skip to main content
summaryrefslogtreecommitdiffstats
blob: ff69e337cc4ae42dfd90cd791a0383cd106d7765 (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) 2004 Composent, Inc. 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:
 *    Composent, Inc. - initial API and implementation
 *****************************************************************************/

package org.eclipse.ecf.internal.provider.xmpp;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.ecf.internal.provider.xmpp.messages"; //$NON-NLS-1$
	public static String XMPPChatRoomContainer_Exception_Connect_Wrong_Type;
	public static String XMPPContainer_EXCEPTION_ADDING_SHARED_OBJECT;
	public static String XMPPContainer_EXCEPTION_DESERIALIZED_OBJECT_NULL;
	public static String XMPPContainer_EXCEPTION_HANDLING_ASYCH_EVENT;
	public static String XMPPContainer_EXCEPTION_INVALID_RESPONSE_FROM_SERVER;
	public static String XMPPContainer_UNEXPECTED_EVENT;
	public static String XMPPContainer_UNEXPECTED_XMPP_MESSAGE;
	public static String XMPPContainer_UNRECOGONIZED_CONTAINER_MESSAGE;
	public static String XMPPIncomingFileTransfer_Progress_Data;
	public static String XMPPIncomingFileTransfer_Exception_User_Cancelled;
	public static String XMPPIncomingFileTransfer_Status_Transfer_Completed_OK;
	public static String XMPPIncomingFileTransfer_Status_Transfer_Exception;
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}
}

Back to the top