Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3260b8165248d274af587ca290f5654df5ed4218 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.papyrus.cpp.codegen;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.papyrus.cpp.codegen.messages"; //$NON-NLS-1$
	public static String CppModelElementsCreator_CannotFormatContent;
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}
}

Back to the top