Package oracle.rules.sdk2.dictionary
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
A SettableProperty can be set
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Describe differences between 2SettableProperty
this
andthat
, and allow the differences from that to be appled to this so this and that are the same.Nested classes/interfaces inherited from class oracle.rules.sdk2.dictionary.DictionaryProperty
DictionaryProperty.DiffType
-
Constructor Summary
ConstructorsConstructorDescriptionSettableProperty
(DictionaryComponent containingComponent, String propertyName, String propertyIdName) -
Method Summary
Modifier and TypeMethodDescriptionGet the value of the property accounting for diffs.getDiffValue
(Object versionInfo) Get the diffValue contributed by the given version.void
Set the value of the propertyMethods inherited from class oracle.rules.sdk2.dictionary.DictionaryProperty
getContainedDiffs, getDiff, getDiffs, getName, getName, getTranslatedName, getValue, hasDiff, removeDiff
-
Constructor Details
-
SettableProperty
public SettableProperty(DictionaryComponent containingComponent, String propertyName, String propertyIdName) - Parameters:
containingComponent
-propertyName
-propertyIdName
-
-
-
Method Details
-
setValue
Set the value of the property- Parameters:
value
-
-
getDiffValue
Get the value of the property accounting for diffs. Do not confuse this method withSettableProperty.Diff.getValue()
. getDiffValue should be used instead ofDictionaryProperty.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
Get the diffValue contributed by the given version. Null if no diff.- Parameters:
versionInfo
-- Returns:
- diffValue or null
-