Class SettableProperty<T>

java.lang.Object
oracle.rules.sdk2.dictionary.DictionaryProperty<T>
oracle.rules.sdk2.dictionary.SettableProperty<T>
Type Parameters:
T - the class of the property, usually String
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FactBinding.VariableProperty, TranslatedProperty, UserTranslatedProperty, ValuesProperty, VerbalProperty

public class SettableProperty<T> extends DictionaryProperty<T>
A SettableProperty can be set
See Also:
  • Constructor Details

    • SettableProperty

      public SettableProperty(DictionaryComponent containingComponent, String propertyName, String propertyIdName)
      Parameters:
      containingComponent -
      propertyName -
      propertyIdName -
  • Method Details

    • setValue

      public void setValue(T value)
      Set the value of the property
      Parameters:
      value -
    • getDiffValue

      public T getDiffValue()
      Get the value of the property accounting for diffs. Do not confuse this method with SettableProperty.Diff.getValue(). getDiffValue should be used instead of DictionaryProperty.getValue() when rendering this property in "diff mode". diffValue is rarely different from value. One case is if AdvancedMode has a diff, then the diff value is TRUE to force the UI to render Patterns, etc.
      Returns:
      value of type T
    • getDiffValue

      public T getDiffValue(Object versionInfo)
      Get the diffValue contributed by the given version. Null if no diff.
      Parameters:
      versionInfo -
      Returns:
      diffValue or null