All Implemented Interfaces:
SVGElement, Element, XMLElement
Direct Known Subclasses:
SVGTextImpl, SVGTSpanImpl

@ClassVersion(sourceVersion="$Id: SVGTextBase.java 1074 2023-10-02 12:05:06Z tquadrat $") @API(status=INTERNAL, since="0.0.5") public abstract sealed class SVGTextBase extends SVGElementImpl permits SVGTSpanImpl, SVGTextImpl
The abstract common base class for the implementation of interfaces SVGText and SVGTSpan.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: SVGTextBase.java 1074 2023-10-02 12:05:06Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.svg.internal.SVGTextBase"

UML Diagram for "org.tquadrat.foundation.svg.internal.SVGTextBase"

UML Diagram for "org.tquadrat.foundation.svg.internal.SVGTextBase"
  • Constructor Details

    • SVGTextBase

      protected SVGTextBase(String elementName)
      Creates a new SVGTextBase instance.
      Parameters:
      elementName - The element name.
  • Method Details

    • setDx

      public final void setDx(SVGNumber... values)
      Sets a list of lengths which move the characters relative to the absolute position of the last glyph drawn. The nth length is given to nth character in the text. If there are additional characters after the positions run out, the last length is applied to them.
      Parameters:
      values - The lengths.
    • setDy

      public final void setDy(SVGNumber... values)
      Sets a list of heights which move the characters relative to the absolute position of the last glyph drawn. The nth height is given to nth character in the text. If there are additional characters after the positions run out, the last height is applied to them.
      Parameters:
      values - The heights.
    • setLengthAdjust

      public final void setLengthAdjust(boolean flag)
      Sets the way the text length will be adjusted in order to meet the target length set by setTextLength(SVGNumber).
      Parameters:
      flag - true means that both, spacing and glyph size will be adjusted to match, false indicates that only the spacing will be changed.
    • setRotate

      public final void setRotate(SVGNumber.SVGDegree... values)
      Sets a list of rotations for the glyphs. The nth rotation is given to nth character in the text. Additional characters are not given the last rotation (although some browsers may handle that differently).
      Parameters:
      values - The rotations.
    • setTextLength

      public final void setTextLength(SVGNumber value)
      Sets the target length for the text that an SVG viewer will attempt to display the text between by adjusting the spacing and/or the glyphs.
      Parameters:
      value - The intended text length.
    • setX

      public final void setX(SVGNumber... values)
      Sets a list of x-axis position. The nth x-axis position is given to nth character in the text. If there are additional characters after the positions run out, they are placed after the last character.
      Parameters:
      values - The x-axis positions.
    • setY

      public final void setY(SVGNumber... values)
      Sets a list of y-axis position. The nth y-axis position is given to nth character in the text. If there are additional characters after the positions run out, they are placed after the last character.
      Parameters:
      values - The y-axis positions.