Package pulse.util

Class PropertyHolder

    • Constructor Detail

      • PropertyHolder

        public PropertyHolder()
    • 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 this PropertyHolder.
      • 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 this PropertyHolder.
      • isListedParameter

        public boolean isListedParameter​(Property p)
        Checks whether p, which is either a generic or a numeric property, is listed as as parameter for this PropertyHolder.
        Parameters:
        p - the Property
        Returns:
        true if p is listed, false otherwise.
      • data

        public List<Property> data()
        Lists all data contained in this PropertyHolder. 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.
      • updateProperty

        public boolean updateProperty​(Object sourceComponent,
                                      Property updatedProperty)

        Attempts to update an updatedProperty similar to one found in this PropertyHolder. The call originator is declared to be the sourceComponent. If the originator is not the parent of this UpwardsNavigable, this object will tell their parent about this behaviour. The update is done by calling the superclass method update(Property -- if and only if a property similar to updatedProperty exists and its value is not equal to the updatedProperty. When the update happens, this will pass the corresponding PropertyEvent to the available listeners.

        Parameters:
        sourceComponent - the originator of the change.
        updatedProperty - the updated property that will be assigned to this PropertyHolder.
      • firePropertyChanged

        public void firePropertyChanged​(Object source,
                                        Property property)
      • updateProperties

        public void updateProperties​(Object sourceComponent,
                                     PropertyHolder propertyHolder)
        This method will update this PropertyHolder with all properties that are contained in a different propertyHolder, if they also are present in the former.
        Parameters:
        sourceComponent - the source of the change
        propertyHolder - another PropertyHolder
        See Also:
        updateProperty(java.lang.Object,pulse.properties.Property)
      • removeListeners

        public void removeListeners()
      • areDetailsHidden

        public boolean areDetailsHidden()
        By default, this is set to false. If the overriding subclass sets this to true, only those NumericProperties that have the autoAdjustable flag set false 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()
        Should Accessibles that belong to this PropertyHolder be ignored when this PropertyHolder 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 interface Descriptive
        Overrides:
        describe in class UpwardsNavigable
        Returns:
        by default, this will return the name of the implementing class and the date of the calculation.
      • getPrefix

        public String getPrefix()
      • setPrefix

        public void setPrefix​(String prefix)