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 SummaryFieldsFields inherited from interface com.inductiveautomation.ignition.common.config.PropertySetEMPTY
- 
Constructor SummaryConstructorsConstructorDescriptionPropertySetConfig(PropertySet source) PropertySetConfig(PropertySet source, PropertySetDiff editTarget) 
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddPropertyChangeListener(Property<?> property, PropertyChangeListener listener) voidprotected PropertyChangeSupportchange()booleanstatic PropertySetConfigcreate(PropertySet source) Returns a wrapping PropertySetConfig, unless the source already is one, then just casts it.protected PropertySetDiffvoidprotected voidfirePropertyChange(Property<?> property, Object oldValue, Object newValue) <T> TRetrieves the value of the property, or null if this set doesn't contain that property.intgetCount()getEdit()<T> TgetOrDefault(Property<T> prop) <T> TGet the value for a givenProperty, or else fall back to value if it's not present.Collection<Property<?>>protected <T> TgetSuperValue(Property<T> prop) Returns the opaque PropertyValue objects.protected booleanbooleanisExtended(Property<?> prop) Returns whether this property set contains a value for the prop, and the prop was actually inherited.booleanisInherited(Property<?> prop) Indicates whether the property was inherited from a parent type.booleanisModified(Property<?> property) protected booleaniterator()voidvoidvoidremovePropertyChangeListener(Property<?> property, PropertyChangeListener listener) voidvoid<T> voidvoidset(PropertyValue propValue) protected voidMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.IterableforEach, spliteratorMethods inherited from interface com.inductiveautomation.ignition.common.config.MutablePropertyValueSourcemergeMethods inherited from interface com.inductiveautomation.ignition.common.config.PropertySetextend, getExtension, newDefaultInstance, newExtensionMethods inherited from interface com.inductiveautomation.ignition.common.config.PropertyValueSourcegetNonNull, getNonNull
- 
Field Details- 
source
- 
edit
 
- 
- 
Constructor Details- 
PropertySetConfig
- 
PropertySetConfig
 
- 
- 
Method Details- 
createReturns a wrapping PropertySetConfig, unless the source already is one, then just casts it.
- 
getSource
- 
getEdit
- 
createDiff
- 
mergeDiffToSourcepublic void mergeDiffToSource()
- 
discardChangespublic void discardChanges()
- 
getModified
- 
getDescription copied from interface:PropertyValueSourceRetrieves the value of the property, or null if this set doesn't contain that property.- Specified by:
- getin interface- PropertyValueSource
 
- 
getSuperValue
- 
goToSuper
- 
getOrDefault- Specified by:
- getOrDefaultin interface- PropertyValueSource
- Returns:
- The value for prop or Property.getDefaultValue()if not present. Can return null if the value is null.
 
- 
getOrElseDescription copied from interface:PropertyValueSourceGet the value for a givenProperty, or else fall back to value if it's not present.- Specified by:
- getOrElsein interface- PropertyValueSource
- Parameters:
- property- The- Propertyfor 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:
- setin interface- MutablePropertyValueSource
 
- 
set- Specified by:
- setin interface- MutablePropertyValueSource
 
- 
remove- Specified by:
- removein interface- MutablePropertyValueSource
 
- 
revert- Specified by:
- revertin interface- PropertySetEdit
 
- 
contains- Specified by:
- containsin interface- PropertyValueSource
- Returns:
- True if the source contains a value for prop.
 
- 
getCountpublic int getCount()
- 
isExtendedDescription copied from interface:PropertySetReturns 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:
- isExtendedin interface- PropertySet
 
- 
isInheritedDescription copied from interface:PropertySetIndicates whether the property was inherited from a parent type.- Specified by:
- isInheritedin interface- PropertySet
 
- 
isModified- Specified by:
- isModifiedin interface- PropertySetEdit
 
- 
getProperties- Specified by:
- getPropertiesin interface- PropertyValueSource
 
- 
getValuesDescription copied from interface:PropertyValueSourceReturns 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:
- getValuesin interface- PropertyValueSource
 
- 
iterator- Specified by:
- iteratorin interface- Iterable<PropertyValue>
 
- 
isRemoved
- 
change
- 
firePropertyChange
- 
addPropertyChangeListener- Specified by:
- addPropertyChangeListenerin interface- ObservablePropertySet
 
- 
removePropertyChangeListener- Specified by:
- removePropertyChangeListenerin interface- ObservablePropertySet
 
- 
addPropertyChangeListener- Specified by:
- addPropertyChangeListenerin interface- ObservablePropertySet
 
- 
removePropertyChangeListener- Specified by:
- removePropertyChangeListenerin interface- ObservablePropertySet
 
 
-