Skip to main content
summaryrefslogtreecommitdiffstats
blob: ad29531cc4c2681fa2ce5d77b84140f796022962 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.papyrus.uml.nattable.messages;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.papyrus.uml.nattable.messages.messages"; //$NON-NLS-1$

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

	private Messages() {
	}
}

Back to the top