01: package net.refractions.udig.legend.internal;
02:
03: import org.eclipse.osgi.util.NLS;
04:
05: public class Messages extends NLS {
06: private static final String BUNDLE_NAME = "net.refractions.udig.legend.internal.messages"; //$NON-NLS-1$
07:
08: public static String LegendGraphicStyleConfigurator_background_colour;
09:
10: public static String LegendGraphicStyleConfigurator_font_colour;
11:
12: public static String LegendGraphicStyleConfigurator_horizontal_margin;
13:
14: public static String LegendGraphicStyleConfigurator_horizontal_spacing;
15:
16: public static String LegendGraphicStyleConfigurator_indent_size;
17:
18: public static String LegendGraphicStyleConfigurator_vertical_margin;
19:
20: public static String LegendGraphicStyleConfigurator_vertical_spacing;
21: static {
22: // initialize resource bundle
23: NLS.initializeMessages(BUNDLE_NAME, Messages.class);
24: }
25:
26: private Messages() {
27: }
28: }
|