Class SettableProperty.Diff<T>

java.lang.Object
oracle.rules.sdk2.dictionary.DictionaryProperty.Diff
oracle.rules.sdk2.dictionary.SettableProperty.Diff<T>
Direct Known Subclasses:
UserTranslatedProperty.Diff
Enclosing class:
SettableProperty<T>

public static class SettableProperty.Diff<T> extends DictionaryProperty.Diff
Describe differences between 2 SettableProperty this and that, and allow the differences from that to be appled to this so this and that are the same.
  • Method Details

    • getValue

      public T getValue()
      Get the value of the diff -- the value that differs from getContainingProperty().getValue()
      Returns:
      the different value
    • getOldValue

      public T getOldValue()
      Get the value to be shown as old, e.g. in a strikeout font In merge mode, this is the value from the edited file. In diff mode, this is the value from the (older) version
      Returns:
      old value of diff
    • getNewValue

      public T getNewValue()
      Get the value to be shown as new, e.g. in a prominant non-strikeout font In diff mode, this is the value from the edited file. In merge mode, this is the value from the (newer) version
      Returns:
      new value of diff
    • getContainingProperty

      public SettableProperty<T> getContainingProperty()
      Get the SettableProperty containing this Diff.
      Overrides:
      getContainingProperty in class DictionaryProperty.Diff
      Returns:
      SettableProperty
    • applyDiff

      public void applyDiff(boolean partial)