Interface SVGStyle

All Superinterfaces:
Element, SVGElement
All Known Implementing Classes:
SVGElementAdapter, SVGGenericElement, SVGStyleImpl

@ClassVersion(sourceVersion="$Id: SVGStyle.java 1074 2023-10-02 12:05:06Z tquadrat $") @API(status=STABLE, since="0.0.5") public sealed interface SVGStyle extends SVGElement permits SVGElementAdapter, SVGStyleImpl
The definition for the SVG <style> element.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: SVGStyle.java 1074 2023-10-02 12:05:06Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.svg.SVGStyle"

UML Diagram for "org.tquadrat.foundation.svg.SVGStyle"

UML Diagram for "org.tquadrat.foundation.svg.SVGStyle"
  • Method Details

    • addStyle

      void addStyle(CharSequence... styles)
      Adds a CSS style definition to this style.
      Parameters:
      styles - The style definitions to add.
    • getStyleSheet

      Returns the style sheet.
      Returns:
      The style definitions.
    • merge

      void merge(SVGStyle other)
      Merges the given SVG <style> element into this one.

      Only the CSS style definitions are taken from the other element, no attributes or comments.
      Parameters:
      other - The other <style> element.
    • toString

      String toString(int indentationLevel, boolean prettyPrint)
      Specified by:
      toString in interface Element