Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3253c5eb40a0d6c06571eb5232c9a86d5b690ab7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.eclipse.papyrus.java.reverse.ui.dnd;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.papyrus.java.reverse.ui.dnd.messages"; //$NON-NLS-1$

	public static String DropReverseStrategy_DESCRIPTION;

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

	private Messages() {
	}
}

Back to the top