Class AbstractUiNativeWidgetWrapper<W>

    • Constructor Detail

      • AbstractUiNativeWidgetWrapper

        public AbstractUiNativeWidgetWrapper()
        The constructor.
    • Method Detail

      • onStylesChanged

        protected void onStylesChanged​(String newStyles)
        Parameters:
        newStyles - the new styles.
      • getTooltip

        public final String getTooltip()
        Specified by:
        getTooltip in interface AttributeWriteTooltip
        Returns:
        the text of this object. It is a brief description that explains this object to the end-user. Will be the empty String if no tooltip is specified.
      • setTooltipNative

        protected abstract void setTooltipNative​(String newTooltip)
        Parameters:
        newTooltip - the new tooltip to apply.
      • getId

        public String getId()
        Description copied from interface: AttributeReadId
        This method gets the unique identifier of this object.
        ATTENTION:
        In order to be compliant with all possible UI toolkit implementations, a valid ID has to fulfill ECMA-262, Section 7.6. It is recommended to use IDs of the form [a-zA-Z][a-zA-Z0-9_$]*. Invalid IDs (e.g. containing colon, hash or period) will cause complications with CSS selectors.
        Specified by:
        getId in interface AttributeReadId
        Returns:
        the ID of this object.
      • setIdNative

        protected abstract void setIdNative​(String id)
        Parameters:
        id - the new ID.