- java.lang.Object
-
- com.github.weisj.jsvg.nodes.text.NullTextOutput
-
- All Implemented Interfaces:
TextOutput
public final class NullTextOutput extends java.lang.Object implements TextOutput
-
-
Field Summary
Fields Modifier and Type Field Description static NullTextOutput
INSTANCE
-
Constructor Summary
Constructors Modifier Constructor Description private
NullTextOutput()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
beginText()
void
codepoint(@NotNull java.lang.String codepoint, @NotNull java.awt.geom.AffineTransform glyphTransform, @NotNull RenderContext context)
void
endText()
void
glyphRunBreak()
Signals that the next glyph has manual placement and therefore is visually separated from the previous glyph.
-
-
-
Field Detail
-
INSTANCE
public static final NullTextOutput INSTANCE
-
-
Method Detail
-
codepoint
public void codepoint(@NotNull @NotNull java.lang.String codepoint, @NotNull @NotNull java.awt.geom.AffineTransform glyphTransform, @NotNull @NotNull RenderContext context)
- Specified by:
codepoint
in interfaceTextOutput
-
beginText
public void beginText()
- Specified by:
beginText
in interfaceTextOutput
-
glyphRunBreak
public void glyphRunBreak()
Description copied from interface:TextOutput
Signals that the next glyph has manual placement and therefore is visually separated from the previous glyph.- Specified by:
glyphRunBreak
in interfaceTextOutput
-
endText
public void endText()
- Specified by:
endText
in interfaceTextOutput
-
-