Module org.tquadrat.foundation.svg
Package org.tquadrat.foundation.svg
Interface AllowsXLinkAttributes
- All Known Subinterfaces:
SVGUse
- All Known Implementing Classes:
SVGElementAdapter
,SVGGenericElement
,SVGUseImpl
@ClassVersion(sourceVersion="$Id: AllowsXLinkAttributes.java 1074 2023-10-02 12:05:06Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public sealed interface AllowsXLinkAttributes
permits SVGUse
SVG elements that allow the XLink attributes
"xlink:actuate",
"xlink:arcrole",
"xlink:href",
"xlink:role",
"xlink:show",
"xlink:title",
and
"xlink:type"
will implement this interface.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: AllowsXLinkAttributes.java 1074 2023-10-02 12:05:06Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.svg.AllowsXLinkAttributes"
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
setXlinkActuate
(CharSequence value) Sets the XLinkactuate
attribute.void
setXLinkArcRole
(CharSequence value) Sets the XLinkarcrole
attribute.void
setXLinkReference
(CharSequence value) Sets the XLinkreference
attribute.void
setXLinkRole
(CharSequence value) Sets the XLinkrole
attribute.void
setXLinkShow
(CharSequence value) Sets the XLinkshow
attribute.void
setXLinkTitle
(CharSequence value) Sets the XLinktitle
attribute.void
setXLinkType
(CharSequence value) Sets the XLinktype
attribute.
-
Field Details
-
XLINK_ATTRIBUTES
The core attributes.
-
-
Method Details
-
setXlinkActuate
Sets the XLinkactuate
attribute.- Parameters:
value
- The attribute type.
-
setXLinkArcRole
Sets the XLinkarcrole
attribute.- Parameters:
value
- The attribute type.
-
setXLinkReference
Sets the XLinkreference
attribute.- Parameters:
value
- The attribute type.
-
setXLinkRole
Sets the XLinkrole
attribute.- Parameters:
value
- The attribute type.
-
setXLinkShow
Sets the XLinkshow
attribute.- Parameters:
value
- The attribute type.
-
setXLinkTitle
Sets the XLinktitle
attribute.- Parameters:
value
- The attribute type.
-
setXLinkType
Sets the XLinktype
attribute.- Parameters:
value
- The attribute type.
-