Schnittstelle ISelectingStyle<SS extends ISelectingStyle<SS>>

Typparameter:
SS - is the type of a ISelectingStyle.
Alle Superschnittstellen:
IBaseStyle<SS>, IElement
Alle bekannten Unterschnittstellen:
ISelectingStyleWithSelectors
Alle bekannten Implementierungsklassen:
BaseSelectingStyle, DeepSelectingStyle, SelectingStyle

public interface ISelectingStyle<SS extends ISelectingStyle<SS>> extends IBaseStyle<SS>
A ISelectingStyle is a IBaseStyle that can select or skip a IStylableElement that is given to be styled.
Version:
2023-07-08
Autor:
Silvan Wyss
  • Methodendetails

    • selectsChildElements

      boolean selectsChildElements()
      Gibt zurück:
      true if the current ISelectingStyle would select the child elements of a given IStylableElement to style.
    • selectsElement

      boolean selectsElement(IStylableElement<?> element)
      Parameter:
      element -
      Gibt zurück:
      true if the current ISelectingStyle would select the given element to style.
    • skipsChildElements

      default boolean skipsChildElements()
      Gibt zurück:
      true if the current ISelectingStyle would not (!) select the child elements of a given IStylableElement to style.
    • skipsElement

      default boolean skipsElement(IStylableElement<?> element)
      Parameter:
      element -
      Gibt zurück:
      true if the current ISelectingStyle would not (!) select the given element to style.