Class PropertyHolder
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- All Implemented Interfaces:
Serializable
,Descriptive
- Direct Known Subclasses:
AbsorptionModel
,AbstractData
,AbstractIntegrator
,Baseline
,Buffer
,Calculation
,CorrelationTest
,DifferenceScheme
,Discretisation
,Grid
,Harmonic
,IterativeSolver
,LinearOptimiser
,Metadata
,ODEIntegrator
,OptimisablePolyline
,PathOptimiser
,Problem
,Pulse
,PulseTemporalShape
,RadiativeTransferCoupling
,RadiativeTransferSolver
,Range
,Statistic
,StretchedGrid
,ThermalProperties
public abstract class PropertyHolder extends Accessible
AnAccessible
that has a list of parameters it accepts as its own and a list ofPropertyHolderListener
that track changes with all properties of theAccessible
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyHolder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addListener(PropertyHolderListener l)
boolean
areDetailsHidden()
By default, this is set tofalse
.List<Property>
data()
Lists all data contained in thisPropertyHolder
.String
describe()
Uses the SearchTask id (if present) to describe this UpwardsNavigable.void
firePropertyChanged(Object source, Property property)
String
getDescriptor()
If not null, will return the prefix, otherwise calls the superclass method.List<PropertyHolderListener>
getListeners()
String
getPrefix()
boolean
ignoreSiblings()
ShouldAccessible
s that belong to thisPropertyHolder
be ignored when thisPropertyHolder
is displayed in a table?void
initListeners()
boolean
isListedNumericType(NumericPropertyKeyword p)
boolean
isListedParameter(Property p)
Checks whetherp
, which is either a generic or a numeric property, is listed as as parameter for thisPropertyHolder
.Set<NumericPropertyKeyword>
listedKeywords()
By default, this will search the children of thisPropertyHolder
to collect the types of their listed numeric parameters recursively.List<Property>
listedTypes()
By default, collects a list of default properties corresponding to types defined by listedKeywords().List<NumericProperty>
numericData()
Lists all numeric data contained in thisPropertyHolder
.void
parameterListChanged()
void
removeListeners()
void
setPrefix(String prefix)
void
updateProperties(Object sourceComponent, PropertyHolder propertyHolder)
This method will update thisPropertyHolder
with all properties that are contained in a differentpropertyHolder
, if they also are present in the former.boolean
updateProperty(Object sourceComponent, Property updatedProperty)
Attempts to update anupdatedProperty
similar to one found in thisPropertyHolder
.-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperties, genericProperty, numericProperties, numericProperty, property, set, update, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Method Detail
-
listedKeywords
public Set<NumericPropertyKeyword> listedKeywords()
By default, this will search the children of this
PropertyHolder
to collect the types of their listed numeric parameters recursively.- Returns:
- a set of
NumericPropertyKeyword
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
listedTypes
public List<Property> listedTypes()
By default, collects a list of default properties corresponding to types defined by listedKeywords(). However, this method is overridable to include non-numeric properties.
- Returns:
- a list of
Property
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
.
-
initListeners
public void initListeners()
- Overrides:
initListeners
in classUpwardsNavigable
-
isListedNumericType
public boolean isListedNumericType(NumericPropertyKeyword p)
-
isListedParameter
public boolean isListedParameter(Property p)
Checks whetherp
, which is either a generic or a numeric property, is listed as as parameter for thisPropertyHolder
.- Parameters:
p
- theProperty
- Returns:
true
ifp
is listed,false
otherwise.
-
data
public List<Property> data()
Lists all data contained in thisPropertyHolder
. The data objects must satisfy the following conditions: (a) they must be explicitly listed; (b) the corresponding property must not be auto-adjustable if the details need to remain hidden.- Returns:
- a list of data, which combines generic and numeric properties.
-
numericData
public List<NumericProperty> numericData()
Lists all numeric data contained in thisPropertyHolder
. The data objects must satisfy the following conditions: (a) they must be explicitly listed; (b) the corresponding property must not be auto-adjustable if the details need to remain hidden.- Returns:
- a list of
Property
data. - See Also:
areDetailsHidden()
,isListedNumericType(pulse.properties.NumericProperty)
-
updateProperty
public boolean updateProperty(Object sourceComponent, Property updatedProperty)
Attempts to update an
updatedProperty
similar to one found in thisPropertyHolder
. The call originator is declared to be thesourceComponent
. If the originator is not the parent of thisUpwardsNavigable
, this object will tell their parent about this behaviour. The update is done by calling the superclass methodupdate(Property
-- if and only if a property similar toupdatedProperty
exists and its value is not equal to theupdatedProperty
. When the update happens, this will pass the correspondingPropertyEvent
to the available listeners.- Parameters:
sourceComponent
- the originator of the change.updatedProperty
- the updated property that will be assigned to thisPropertyHolder
.
-
updateProperties
public void updateProperties(Object sourceComponent, PropertyHolder propertyHolder)
This method will update thisPropertyHolder
with all properties that are contained in a differentpropertyHolder
, if they also are present in the former.- Parameters:
sourceComponent
- the source of the changepropertyHolder
- anotherPropertyHolder
- See Also:
updateProperty(java.lang.Object,pulse.properties.Property)
-
removeListeners
public void removeListeners()
-
addListener
public void addListener(PropertyHolderListener l)
-
getListeners
public List<PropertyHolderListener> getListeners()
-
areDetailsHidden
public boolean areDetailsHidden()
By default, this is set tofalse
. If the overriding subclass sets this totrue
, only thoseNumericPropert
ies that have theautoAdjustable
flag setfalse
will be shown.- Returns:
true
if the auto-adjustable numeric properties need to stay hidden,false
otherwise.
-
parameterListChanged
public void parameterListChanged()
-
ignoreSiblings
public boolean ignoreSiblings()
ShouldAccessible
s that belong to thisPropertyHolder
be ignored when thisPropertyHolder
is displayed in a table?- Returns:
false
by default- See Also:
PropertyHolderTable
-
describe
public String describe()
Description copied from class:UpwardsNavigable
Uses the SearchTask id (if present) to describe this UpwardsNavigable.- Specified by:
describe
in interfaceDescriptive
- Overrides:
describe
in classUpwardsNavigable
- Returns:
- by default, this will return the name of the implementing class and the date of the calculation.
-
getPrefix
public String getPrefix()
-
getDescriptor
public String getDescriptor()
If not null, will return the prefix, otherwise calls the superclass method.- Overrides:
getDescriptor
in classGroup
- Returns:
- the descriptor
- See Also:
Group.getSimpleName()
-
setPrefix
public void setPrefix(String prefix)
-
-