1package org.eclipse.wb.internal.core.model;
2
3import org.eclipse.osgi.util.NLS;
4
5public class ModelMessages extends NLS {
6  private static final String BUNDLE_NAME = "org.eclipse.wb.internal.core.model.ModelMessages"; //$NON-NLS-1$
7  public static String CharacterPropertyEditor_notValid;
8  public static String DoubleObjectPropertyEditor_notValidDouble;
9  public static String DoublePropertyEditor_notValidDouble;
10  public static String FloatPropertyEditor_notValidFloat;
11  public static String IntegerObjectPropertyEditor_notValidInt;
12  public static String IntegerPropertyEditor_notValidInt;
13  public static String LongObjectPropertyEditor_notValidLong;
14  public static String LongPropertyEditor_notValidLong;
15  public static String ShortObjectPropertyEditor_notValidShort;
16  public static String ShortPropertyEditor_notValidShort;
17  public static String StringArrayPropertyEditor_hint;
18  public static String StringArrayPropertyEditor_itemsLabel;
19  public static String StringPropertyDialog_title;
20  static {
21    // initialize resource bundle
22    NLS.initializeMessages(BUNDLE_NAME, ModelMessages.class);
23  }
24
25  private ModelMessages() {
26  }
27}
28