summaryrefslogtreecommitdiff
path: root/propertysheet/src/org/eclipse/wb/internal/core/model/ModelMessages.java
blob: 58bc631f5fdc8656e357348520f6c34edbdfc6c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.eclipse.wb.internal.core.model;

import org.eclipse.osgi.util.NLS;

public class ModelMessages extends NLS {
  private static final String BUNDLE_NAME = "org.eclipse.wb.internal.core.model.ModelMessages"; //$NON-NLS-1$
  public static String CharacterPropertyEditor_notValid;
  public static String DoubleObjectPropertyEditor_notValidDouble;
  public static String DoublePropertyEditor_notValidDouble;
  public static String FloatPropertyEditor_notValidFloat;
  public static String IntegerObjectPropertyEditor_notValidInt;
  public static String IntegerPropertyEditor_notValidInt;
  public static String LongObjectPropertyEditor_notValidLong;
  public static String LongPropertyEditor_notValidLong;
  public static String ShortObjectPropertyEditor_notValidShort;
  public static String ShortPropertyEditor_notValidShort;
  public static String StringArrayPropertyEditor_hint;
  public static String StringArrayPropertyEditor_itemsLabel;
  public static String StringPropertyDialog_title;
  static {
    // initialize resource bundle
    NLS.initializeMessages(BUNDLE_NAME, ModelMessages.class);
  }

  private ModelMessages() {
  }
}