com.highqsoft.interfaces.fwk

Interface FwkPropertyEditorDialogPaneValueInterface

    • Method Detail

      • disable

        void disable(java.lang.String propertyName)
        Disable a property.
        Parameters:
        propertyName - The name name of the property.
      • enable

        void enable(java.lang.String propertyName)
        Enable a property.
        Parameters:
        propertyName - The name name of the property.
      • getPropertyAttribute

        java.lang.Object getPropertyAttribute(java.lang.String propertyName,
                                            java.lang.String attrName)
        Retrieves a specific attribute of a property.
        Parameters:
        propertyName - The name name of the property.
        attrName - The attribute name.
        Returns:
        attrMap The attribute map of this property.
      • getPropertyAttributes

        java.util.Map getPropertyAttributes(java.lang.String propertyName)
        Retrieves the attributes that belong to the specified property.
        Parameters:
        propertyName - The name name of the property.
        Returns:
        attrMap The attribute map of this property.
      • setPropertyAttribute

        void setPropertyAttribute(java.lang.String propertyName,
                                java.lang.String attrName,
                                java.lang.Object attrValue)
        Sets the attribute of a property.
        Parameters:
        propertyName - The name name of the property.
        attrName - The name of the property attribute.
        attrValue - The value of the property attribute.
      • setPropertyAttributes

        void setPropertyAttributes(java.lang.String propertyName,
                                 java.util.Map attrMap)
        Sets the attributes of a property. The existing property attribute map is replaced by the new one. Values from the old map are lost.
        Parameters:
        propertyName - The name name of the property.
        propertyAttributes - The property attribute map.