Schnittstelle ISelectingStyle<SS extends ISelectingStyle<SS>>
- Typparameter:
SS
- is the type of aISelectingStyle
.
- Alle Superschnittstellen:
IBaseStyle<SS>
,IElement
- Alle bekannten Unterschnittstellen:
ISelectingStyleWithSelectors
- Alle bekannten Implementierungsklassen:
BaseSelectingStyle
,DeepSelectingStyle
,SelectingStyle
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
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungboolean
boolean
selectsElement
(IStylableElement<?> element) default boolean
default boolean
skipsElement
(IStylableElement<?> element) Von Schnittstelle geerbte Methoden ch.nolix.systemapi.elementapi.styleapi.IBaseStyle
applyToElement, getAttachingAttributes, getSubStyles, withAttachingAttribute, withAttachingAttributes, withSubStyle, withSubStyles
Von Schnittstelle geerbte Methoden ch.nolix.systemapi.elementapi.baseapi.IElement
getAttributes, getSpecification, toFormatedString, toXml
-
Methodendetails
-
selectsChildElements
boolean selectsChildElements()- Gibt zurück:
- true if the current
ISelectingStyle
would select the child elements of a givenIStylableElement
to style.
-
selectsElement
- 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 givenIStylableElement
to style.
-
skipsElement
- Parameter:
element
-- Gibt zurück:
- true if the current
ISelectingStyle
would not (!) select the given element to style.
-