Class PropertyTranslator

java.lang.Object
oracle.rules.sdk2.dictionary.PropertyTranslator
All Implemented Interfaces:
Serializable

public class PropertyTranslator extends Object implements Serializable
See Also:
  • Method Details

    • getTranslation

      public String getTranslation(DOID id, String propertyName)
      get translation of property of dictionary component
      Parameters:
      id - DOID of dictionary component
      propertyName -
      Returns:
      translation, or "" if not in bundle
    • getAlias

      public String getAlias(DOID id)
      return the translated alias for the dictionary component
      Parameters:
      id - of the dictionary component
      Returns:
      translated alias or "" (if not found)
    • getDescription

      public String getDescription(DOID id)
      return the translated description for the dictionary component
      Parameters:
      id - of the dictionary component
      Returns:
      translated description or "" (if not found)
    • getUnsavedTranslations

      public List<PropertyTranslator.KVV> getUnsavedTranslations()
      get a list of (key, value1, value2) objects. value1 is not null and is the unsaved value. value2 is the value from the resource bundle, and may be null
      Returns:
      list of KVV objects
    • getAllTranslations

      public List<PropertyTranslator.KVV> getAllTranslations()
      get a list of (key, value1, value2) objects. value1 is not null and is the untranslated value (from the RuleDictionary). value2 is the translated value from the resource bundle, and may be null
      Returns:
      list of KVV objects
    • key

      public static PropertyTranslator.Key key(String key)
      return the Key for the key String from the resource bundle
      Parameters:
      key -
      Returns:
      Key
    • key

      public static PropertyTranslator.Key key(DOID id, String propertyName)
      return the Key for the dictionary component id and property name
      Parameters:
      id -
      propertyName -
      Returns:
      Key
    • aliasKey

      public static PropertyTranslator.Key aliasKey(DOID id)
      return the Key for the dictionary component id and alias property
      Parameters:
      id -
      Returns:
      Key
    • descriptionKey

      public static PropertyTranslator.Key descriptionKey(DOID id)
      return the Key for the dictionary component id and description property
      Parameters:
      id -
      Returns:
      Key