Interface SVGSymbol

All Superinterfaces:
AllowsGraphicalEventAttributes, AllowsPresentationAttributes, AllowsStyleAttributes, Element, SVGElement, SVGElementWithChildren
All Known Implementing Classes:
SVGElementAdapter, SVGGenericElement, SVGSymbolImpl

@ClassVersion(sourceVersion="$Id: SVGSymbol.java 1074 2023-10-02 12:05:06Z tquadrat $") @API(status=STABLE, since="0.0.5") public sealed interface SVGSymbol extends SVGElementWithChildren, AllowsGraphicalEventAttributes, AllowsPresentationAttributes, AllowsStyleAttributes permits SVGElementAdapter, SVGSymbolImpl
The definition of the SVG element <symbol>.

A <symbol> element is useless without the attribute id set; therefore it is required already on creation and will not appear in this interface.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: SVGSymbol.java 1074 2023-10-02 12:05:06Z tquadrat $
Since:
0.0.5
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.svg.SVGSymbol"

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

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

    • setExternalResourcesRequired

      void setExternalResourcesRequired(boolean flag)
      Sets the attribute that indicates whether external resources are required to render this <symbol> element.
      Parameters:
      flag - true if external resources are needed, false if all required resources are local to the current context.
    • setPreserveAspectRatio

      Sets the mode for the aspect ratio preservation for this <symbol> element.
      Parameters:
      value - The type; if null the attribute will be removed.
    • setViewBox

      void setViewBox(SVGNumber x, SVGNumber y, SVGNumber width, SVGNumber height)
      Defines the visible area for this <symbol> element.
      Parameters:
      x - The x coordinate of top left corner of the area.
      y - The y coordinate of top left corner of the area.
      width - The width of the area.
      height - The height of the area.