Schnittstelle IAbstractStyle<S extends IAbstractStyle<S>>

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

public interface IAbstractStyle<S extends IAbstractStyle<S>> extends IElement
A IAbstractStyle can style IStylableElements. A IAbstractStyle can distinguish if it would style also the child elements of a given IStylableElement.
Version:
2023-07-09
Autor:
Silvan Wyss
  • Methodendetails

    • applyToElement

      void applyToElement(IStylableElement<?> element)
      Applies the current IAbstractStyle to the given element.
      Parameter:
      element -
    • getAttachingAttributes

      IContainer<? extends IAttachingAttribute> getAttachingAttributes()
      Gibt zurück:
      the attaching attributes of the current IAbstractStyle.
    • getSubStyles

      IContainer<? extends ISelectingStyleWithSelectors> getSubStyles()
      Gibt zurück:
      the sub styles of the current IAbstractStyle.
    • hasAttachingAttributes

      boolean hasAttachingAttributes()
      Gibt zurück:
      true if the current IAbstractStyle has attaching attributes, false otherwise.
    • withAttachingAttribute

      S withAttachingAttribute(Enum<?> tag, String value)
      Parameter:
      tag -
      value -
      Gibt zurück:
      a new IStyle from the current IStyle with an attaching attribute added that has the given tag and value.
      Löst aus:
      RuntimeException - if the given tag is null.
      RuntimeException - if the given attachingAttribute is not valid.
    • withAttachingAttribute

      S withAttachingAttribute(String attachingAttribute, String... attachingAttributes)
      Parameter:
      attachingAttribute -
      attachingAttributes -
      Gibt zurück:
      a new IStyle from the current IStyle with the given attachingAttribute and attachingAttributes added.
      Löst aus:
      RuntimeException - if the given attachingAttribute is not valid.
      RuntimeException - if the given attachingAttributes is null.
      RuntimeException - if one of the given attachingAttributes is not valid.
    • withAttachingAttributes

      S withAttachingAttributes(IContainer<? extends IAttachingAttribute> attachingAttributes)
      Parameter:
      attachingAttributes -
      Gibt zurück:
      a new IStyle from the current IStyle with the given attachingAttributes added.
      Löst aus:
      RuntimeException - if the given attachingAttributes is null.
      RuntimeException - if one of the given attachingAttributes is not valid.
    • withNewAttachingAttributesWhereSelectorType

      S withNewAttachingAttributesWhereSelectorType(String selectorType, IContainer<String> newAttachingAttributes)
      Parameter:
      selectorType -
      newAttachingAttributes -
      Gibt zurück:
      a new IAbstractStyle from the current IAbstractStyle where each of the given newAttachingAttributes was either added or updated the according attachingAttributes where the given selectorType is.
    • withNewAttachingAttributesWhereSelectorType

      S withNewAttachingAttributesWhereSelectorType(String selectorType, String newAttachingAttribute, String... newAttachingAttributes)
      Parameter:
      selectorType -
      newAttachingAttribute -
      newAttachingAttributes -
      Gibt zurück:
      a new IAbstractStyle from the current IAbstractStyle where the newAttachingAttribute and each of the given newAttachingAttributes either was added or updated the according attachingAttributes where the given selectorType is.
    • withReplacedAttachingAttributes

      S withReplacedAttachingAttributes(IContainer<IPair<String,String>> attachingAttributeReplacements)
      Parameter:
      attachingAttributeReplacements -
      Gibt zurück:
      a new IStyle from the current IStyle where the given attachingAttributeReplacements replaced all the according attaching attributes.
    • withReplacedAttachingAttributes

      S withReplacedAttachingAttributes(IPair<String,String> attachingAttributeReplacement, IPair<String,String>... attachingAttributeReplacements)
      Parameter:
      attachingAttributeReplacement -
      attachingAttributeReplacements -
      Gibt zurück:
      a new IStyle from the current IStyle where the given attributeAttributeReplacement and attachingAttributeReplacements replaced all the according attachingAttributes.
    • withReplacedTaggedAttachingAttributes

      S withReplacedTaggedAttachingAttributes(IContainer<IPair<Enum<?>,String>> attachingAttributeReplacements)
      Parameter:
      attachingAttributeReplacements -
      Gibt zurück:
      a new IStyle from the current IStyle where the given attachingAttributeReplacements replaced all the according attaching attributes.
    • withReplacedTaggedAttachingAttributes

      S withReplacedTaggedAttachingAttributes(IPair<Enum<?>,String> attachingAttributeReplacement, IPair<Enum<?>,String>... attachingAttributeReplacements)
      Parameter:
      attachingAttributeReplacement -
      attachingAttributeReplacements -
      Gibt zurück:
      a new IStyle from the current IStyle where the given attributeAttributeReplacement and attachingAttributeReplacements replaced all the according attachingAttributes.
    • withSubStyle

      S withSubStyle(ISelectingStyleWithSelectors subStyle, ISelectingStyleWithSelectors... subStyles)
      Parameter:
      subStyle -
      subStyles -
      Gibt zurück:
      a new IStyle from the current IStyle with the given subStyle and subStyles added.
      Löst aus:
      RuntimeException - if the given subStyle is not valid.
      RuntimeException - if the given subStyles is null.
      RuntimeException - if one of the given subStyles is not valid.
    • withSubStyles

      S withSubStyles(IContainer<? extends ISelectingStyleWithSelectors> subStyles)
      Parameter:
      subStyles -
      Gibt zurück:
      a new IStyle from the current IStyle with the given subStyles added.
      Löst aus:
      RuntimeException - if the given subStyles is null.
      RuntimeException - if one of the given subStyles is not valid.