Class PropertySetConfig
java.lang.Object
com.inductiveautomation.ignition.common.config.PropertySetConfig
- All Implemented Interfaces:
Countable
,Extendable<PropertySet>
,Mergable<PropertySet>
,MutablePropertyValueSource
,ObservablePropertySet
,PropertySet
,PropertySetEdit
,PropertyValueSource
,Serializable
,Iterable<PropertyValue>
- Direct Known Subclasses:
AlarmDefinitionConfig
,BoundPropertySetConfig
Like other Config entities, this object houses a source PropertySet and a Diff. Changes are made to the diff, and the
diff is consulted first for retrieving values. The source object is consulted with the diff has no information for
the property.
- See Also:
-
Field Summary
FieldsFields inherited from interface com.inductiveautomation.ignition.common.config.PropertySet
EMPTY
-
Constructor Summary
ConstructorsConstructorDescriptionPropertySetConfig
(PropertySet source) PropertySetConfig
(PropertySet source, PropertySetDiff editTarget) -
Method Summary
Modifier and TypeMethodDescriptionvoid
addPropertyChangeListener
(Property<?> property, PropertyChangeListener listener) void
protected PropertyChangeSupport
change()
boolean
static PropertySetConfig
create
(PropertySet source) Returns a wrapping PropertySetConfig, unless the source already is one, then just casts it.protected PropertySetDiff
void
protected void
firePropertyChange
(Property<?> property, Object oldValue, Object newValue) <T> T
Retrieves the value of the property, or null if this set doesn't contain that property.int
getCount()
getEdit()
<T> T
getOrDefault
(Property<T> prop) <T> T
Get the value for a givenProperty
, or else fall back to value if it's not present.Collection<Property<?>>
protected <T> T
getSuperValue
(Property<T> prop) Returns the opaque PropertyValue objects.protected boolean
boolean
isExtended
(Property<?> prop) Returns whether this property set contains a value for the prop, and the prop was actually inherited.boolean
isInherited
(Property<?> prop) Indicates whether the property was inherited from a parent type.boolean
isModified
(Property<?> property) protected boolean
iterator()
void
void
void
removePropertyChangeListener
(Property<?> property, PropertyChangeListener listener) void
void
<T> void
void
set
(PropertyValue propValue) protected void
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface com.inductiveautomation.ignition.common.config.MutablePropertyValueSource
merge
Methods inherited from interface com.inductiveautomation.ignition.common.config.PropertySet
extend, getExtension, newDefaultInstance, newExtension
Methods inherited from interface com.inductiveautomation.ignition.common.config.PropertyValueSource
getNonNull, getNonNull
-
Field Details
-
source
-
edit
-
-
Constructor Details
-
PropertySetConfig
-
PropertySetConfig
-
-
Method Details
-
create
Returns a wrapping PropertySetConfig, unless the source already is one, then just casts it. -
getSource
-
getEdit
-
createDiff
-
mergeDiffToSource
public void mergeDiffToSource() -
discardChanges
public void discardChanges() -
getModified
-
get
Description copied from interface:PropertyValueSource
Retrieves the value of the property, or null if this set doesn't contain that property.- Specified by:
get
in interfacePropertyValueSource
-
getSuperValue
-
goToSuper
-
getOrDefault
- Specified by:
getOrDefault
in interfacePropertyValueSource
- Returns:
- The value for prop or
Property.getDefaultValue()
if not present. Can return null if the value is null.
-
getOrElse
Description copied from interface:PropertyValueSource
Get the value for a givenProperty
, or else fall back to value if it's not present.- Specified by:
getOrElse
in interfacePropertyValueSource
- Parameters:
property
- TheProperty
for which a value is to be retrieved.value
- The value to default to if property isn't present.- Returns:
- The value of property if present, value if not. Can return null if the value is null.
-
setImpl
-
set
- Specified by:
set
in interfaceMutablePropertyValueSource
-
set
- Specified by:
set
in interfaceMutablePropertyValueSource
-
remove
- Specified by:
remove
in interfaceMutablePropertyValueSource
-
revert
- Specified by:
revert
in interfacePropertySetEdit
-
contains
- Specified by:
contains
in interfacePropertyValueSource
- Returns:
- True if the source contains a value for prop.
-
getCount
public int getCount() -
isExtended
Description copied from interface:PropertySet
Returns whether this property set contains a value for the prop, and the prop was actually inherited. In other words, this is true if the property is inherited, and an override value is present.- Specified by:
isExtended
in interfacePropertySet
-
isInherited
Description copied from interface:PropertySet
Indicates whether the property was inherited from a parent type.- Specified by:
isInherited
in interfacePropertySet
-
isModified
- Specified by:
isModified
in interfacePropertySetEdit
-
getProperties
- Specified by:
getProperties
in interfacePropertyValueSource
-
getValues
Description copied from interface:PropertyValueSource
Returns the opaque PropertyValue objects. This can be useful when you want to avoid the strict type checking of the value, and it's important to note that if the property is bound, the value will be a BoundValue. Be very careful about overriding, and make sure to maintain the methodology of using getProperties to iterate and get (or getOrDefault), to get the value, because those are all handled differently by BoundPropertySets, ExtendedPropertySets, etc.- Specified by:
getValues
in interfacePropertyValueSource
-
iterator
- Specified by:
iterator
in interfaceIterable<PropertyValue>
-
isRemoved
-
change
-
firePropertyChange
-
addPropertyChangeListener
- Specified by:
addPropertyChangeListener
in interfaceObservablePropertySet
-
removePropertyChangeListener
- Specified by:
removePropertyChangeListener
in interfaceObservablePropertySet
-
addPropertyChangeListener
- Specified by:
addPropertyChangeListener
in interfaceObservablePropertySet
-
removePropertyChangeListener
- Specified by:
removePropertyChangeListener
in interfaceObservablePropertySet
-