Schnittstelle ISelectingStyle<S extends ISelectingStyle<S>>

Typparameter:
S - is the type of a ISelectingStyle.
Alle Superschnittstellen:
IAbstractStyle<S>, IElement
Alle bekannten Unterschnittstellen:
ISelectingStyleWithSelectors
Alle bekannten Implementierungsklassen:
AbstractSelectingStyle, DeepSelectingStyle, SelectingStyle

public interface ISelectingStyle<S extends ISelectingStyle<S>> extends IAbstractStyle<S>
A ISelectingStyle is a IAbstractStyle 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.