Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2ecacf13d98d1fd07813f2742066642001a3d984 (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
/**********************************************************************
 * This file is part of "Object Teams Development Tooling"-Software
 * 
 * Copyright 2009 Stephan Herrmann.
 * 
 * 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
 * $Id: BrandingMessages.java 23461 2010-02-04 22:10:39Z stephan $
 * 
 * Please visit http://www.eclipse.org/objectteams for updates and contact.
 * 
 * Contributors:
 * 		Stephan Herrmann - Initial API and implementation
 **********************************************************************/
package org.eclipse.objectteams.otequinox.internal.branding;

import org.eclipse.osgi.util.NLS;

public class BrandingMessages extends NLS {
	private static final String BUNDLE_NAME = BrandingMessages.class.getName();

	public static String BrandingAdaptor_OT_adapted_by;
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, BrandingMessages.class);
	}

	private BrandingMessages() {
		// don't instantiate
	}
}

Back to the top