Uses of Class
org.pentaho.di.ui.i18n.KeyOccurrence

Packages that use KeyOccurrence
org.pentaho.di.ui.i18n   
 

Uses of KeyOccurrence in org.pentaho.di.ui.i18n
 

Methods in org.pentaho.di.ui.i18n that return KeyOccurrence
 KeyOccurrence MessagesSourceCrawler.getKeyOccurrence(String key, String selectedMessagesPackage)
           
 

Methods in org.pentaho.di.ui.i18n that return types with arguments of type KeyOccurrence
 List<KeyOccurrence> MessagesSourceCrawler.getOccurrences()
           
 List<KeyOccurrence> MessagesSourceCrawler.getOccurrencesForPackage(String messagesPackage)
          Get all the key occurrences for a certain messsages package.
 Map<String,List<KeyOccurrence>> MessagesStore.getPackageOccurrences()
           
 Map<String,List<KeyOccurrence>> TranslationsStore.getPackageOccurrences()
           
 Map<String,List<KeyOccurrence>> MessagesSourceCrawler.getPackageOccurrences()
           
 Map<String,List<KeyOccurrence>> LocaleStore.getPackagesOccurrences()
           
 

Methods in org.pentaho.di.ui.i18n with parameters of type KeyOccurrence
 void MessagesSourceCrawler.addKeyOccurrence(KeyOccurrence occ)
          Add a key occurrence to the list of occurrences.
 int KeyOccurrence.compareTo(KeyOccurrence occ)
           
 

Method parameters in org.pentaho.di.ui.i18n with type arguments of type KeyOccurrence
 void MessagesSourceCrawler.setOccurrences(List<KeyOccurrence> occurrences)
           
 void MessagesStore.setPackageOccurrences(Map<String,List<KeyOccurrence>> packageOccurrences)
           
 void TranslationsStore.setPackageOccurrences(Map<String,List<KeyOccurrence>> packageOccurrences)
           
 void MessagesSourceCrawler.setPackageOccurrences(Map<String,List<KeyOccurrence>> packageOccurrences)
           
 void LocaleStore.setPackagesOccurrences(Map<String,List<KeyOccurrence>> packagesOccurrences)
           
 

Constructor parameters in org.pentaho.di.ui.i18n with type arguments of type KeyOccurrence
LocaleStore(LogChannelInterface log, String locale, List<String> messagesPackages, String mainLocale, Map<String,List<KeyOccurrence>> packageOccurrences)
          Create a new LocaleStore
MessagesStore(String locale, String messagesPackage, Map<String,List<KeyOccurrence>> packageOccurrences)
          Create a new messages store
TranslationsStore(LogChannelInterface log, List<String> localeList, List<String> messagesPackages, String mainLocale, Map<String,List<KeyOccurrence>> packageOccurrences)