Class DictionaryProperty<T>

java.lang.Object
oracle.rules.sdk2.dictionary.DictionaryProperty<T>
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
IDTableProperty, SettableProperty, SyncMarkProperty, TableProperty

public class DictionaryProperty<T> extends Object implements Serializable
Base class for all dictionary component properties. Can be used to get and set property values, and to access information about diffs.
See Also:
  • Method Details

    • getName

      public String getName()
      Get property name.
      Returns:
      String name
    • getName

      public String getName(boolean translate)
      Get property name, optionally translated.
      Returns:
      String name
    • getTranslatedName

      public String getTranslatedName()
      Get translated property name.
      Returns:
      translated name or "" if no translation
    • getValue

      public T getValue()
      Get property value.
      Returns:
      T value
    • hasDiff

      public boolean hasDiff()
      Does this property have diffs?
      Returns:
      boolean
    • getDiffs

      public List<DictionaryProperty.Diff> getDiffs()
      Get diffs for this property.
      Returns:
      List of Diff
    • getContainedDiffs

      public List<Object> getContainedDiffs()
      Get list of leaf diffs contained in this component. The diffs may be SettableProperty.Diff or DictionaryComponent.Diff. These are add, remove, and change diffs, not containers of diffs.
      Returns:
      list of SettableProperty.Diff and DictionaryComponent.Diff
    • getDiff

      public DictionaryProperty.Diff getDiff(Object versionInfo)
      Get the Diff for the given versionInfo
      Parameters:
      versionInfo - identifies the Diff
      Returns:
      DictionaryProperty.Diff
    • removeDiff

      public boolean removeDiff(Object versionInfo)
      Remove the diff from display, but do not apply it (i.e. reject it)
      Parameters:
      versionInfo -