- 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"
-
Field Summary
Fields inherited from interface org.tquadrat.foundation.svg.SVGElement
CORE_ATTRIBUTES
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addStyle
(CharSequence... styles) Adds a CSS style definition to this style.Returns the style sheet.void
Merges the given SVG<style>
element into this one.
Only the CSS style definitions are taken from the other element, no attributes or comments.toString
(int indentationLevel, boolean prettyPrint) Methods inherited from interface org.tquadrat.foundation.xml.builder.spi.Element
getAttribute, getAttributes, getChildren, getElementName, getNamespaces, getParent, hasChildren, isBlock, setParent
Methods inherited from interface org.tquadrat.foundation.svg.SVGElement
addComment, getSVGElementCategory, setId, setLang, setPreserveSpace, setTabIndex, setTitle, setXMLBase, setXMLId, setXMLLang
-
Method Details
-
addStyle
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
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
-