1 11 package org.eclipse.jdt.internal.ui.propertiesfileeditor; 12 13 import java.util.ResourceBundle ; 14 15 import org.eclipse.osgi.util.NLS; 16 17 22 final class PropertiesFileEditorMessages extends NLS { 23 24 private static final String BUNDLE_FOR_CONSTRUCTED_KEYS= "org.eclipse.jdt.internal.ui.propertiesfileeditor.ConstructedPropertiesFileEditorMessages"; private static ResourceBundle fgBundleForConstructedKeys= ResourceBundle.getBundle(BUNDLE_FOR_CONSTRUCTED_KEYS); 26 27 33 public static ResourceBundle getBundleForConstructedKeys() { 34 return fgBundleForConstructedKeys; 35 } 36 37 private static final String BUNDLE_NAME= PropertiesFileEditorMessages.class.getName(); 38 39 private PropertiesFileEditorMessages() { 40 } 42 43 public static String OpenAction_label; 44 public static String OpenAction_tooltip; 45 public static String OpenAction_select_element; 46 public static String OpenAction_error_title; 47 public static String OpenAction_error_message; 48 public static String OpenAction_error_messageArgs; 49 public static String OpenAction_error_messageProblems; 50 public static String OpenAction_error_messageBadSelection; 51 public static String OpenAction_error_messageErrorResolvingSelection; 52 public static String OpenAction_error_messageErrorSearchingKey; 53 public static String OpenAction_error_messageNoResult; 54 public static String OpenAction_SelectionDialog_title; 55 public static String OpenAction_SelectionDialog_details; 56 public static String OpenAction_SelectionDialog_message; 57 public static String OpenAction_SelectionDialog_elementLabel; 58 public static String OpenAction_SelectionDialog_elementLabelWithMatchCount; 59 60 static { 61 NLS.initializeMessages(BUNDLE_NAME, PropertiesFileEditorMessages.class); 62 } 63 } | Popular Tags |