Interface AllowsStyleAttributes

All Known Subinterfaces:
SVG, SVGGroup, SVGLine, SVGPath, SVGRectangle, SVGSymbol, SVGText, SVGTSpan
All Known Implementing Classes:
SVGElementAdapter, SVGGenericElement, SVGGroupImpl, SVGImpl, SVGLineImpl, SVGPathImpl, SVGRectangleImpl, SVGSymbolImpl, SVGTextImpl, SVGTSpanImpl

@ClassVersion(sourceVersion="$Id: AllowsStyleAttributes.java 1074 2023-10-02 12:05:06Z tquadrat $") @API(status=STABLE, since="0.0.5") public sealed interface AllowsStyleAttributes permits SVG, SVGGroup, SVGLine, SVGPath, SVGRectangle, SVGSymbol, SVGTSpan, SVGText
SVG elements that allow the style attributes "class" and "style" will implement this interface.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: AllowsStyleAttributes.java 1074 2023-10-02 12:05:06Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.svg.AllowsStyleAttributes"

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

UML Diagram for "org.tquadrat.foundation.svg.AllowsStyleAttributes"
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final List<String>
    The core attributes.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Sets the CSS class for the SVG element.
    void
    Sets the CSS style for the SVG element.
  • Field Details

  • Method Details

    • setClass

      void setClass(CharSequence value)
      Sets the CSS class for the SVG element.
      Parameters:
      value - The name of a CSS class for this SVG element.
    • setStyle

      void setStyle(CharSequence value)
      Sets the CSS style for the SVG element.
      Parameters:
      value - A CSS style definition.