org.extex.typesetter.type.node
Class ExplicitKernNode
java.lang.Object
org.extex.typesetter.type.node.AbstractNode
org.extex.typesetter.type.node.AbstractKernNode
org.extex.typesetter.type.node.ExplicitKernNode
- All Implemented Interfaces:
- java.io.Serializable, Discardable, Node, KernNode
public class ExplicitKernNode
- extends AbstractKernNode
- implements Discardable
This class represents an explicit kerning node for the typesetter.
From The TeXbook
A kern_node has a width field to specify a (normally negative) amount of
spacing. This spacing correction appears in horizontal lists between
letters like A and V when the font designer said that it looks better to
move them closer together or further apart. A kern node can also appear in
a vertical list, when its `width' denotes additional spacing in the
vertical direction.
- Version:
- $Revision: 4739 $
- Author:
- Gerd Neugebauer, Michael Niedermair
- See Also:
- "TeX – The Program [155]",
ImplicitKernNode,
Serialized Form
|
Field Summary |
protected static long |
serialVersionUID
The constant serialVersionUID contains the id for serialization. |
|
Method Summary |
void |
toString(java.lang.StringBuffer sb,
java.lang.String prefix,
int breadth,
int depth)
This method puts the printable representation into the string buffer. |
void |
toText(java.lang.StringBuffer sb,
java.lang.String prefix)
This method puts the printable representation into the string buffer. |
| Methods inherited from class org.extex.typesetter.type.node.AbstractNode |
addDepthTo, addHeightTo, addWidthTo, advanceNaturalDepth, advanceNaturalHeight, advanceNaturalWidth, atShipping, clone, computeAdjustment, countChars, getChars, getDepth, getHeight, getLocalizer, getNaturalDepth, getNaturalHeight, getNaturalWidth, getVerticalSize, getWidth, maxDepth, maxHeight, maxWidth, setDepth, setHeight, setWidth, spreadHeight, spreadWidth, toString, toText |
| Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.extex.typesetter.type.Node |
addDepthTo, addHeightTo, addWidthTo, atShipping, countChars, getChars, getDepth, getHeight, getNaturalDepth, getNaturalHeight, getNaturalWidth, getVerticalSize, getWidth, setDepth, setHeight, setWidth, spreadHeight, spreadWidth |
serialVersionUID
protected static final long serialVersionUID
- The constant serialVersionUID contains the id for serialization.
- See Also:
- Constant Field Values
ExplicitKernNode
public ExplicitKernNode(FixedDimen kern,
boolean horizontal)
- Creates a new object.
- Parameters:
kern - the natural sizehorizontal - the indicator that the kern works horizontally- See Also:
- "TeX – The Program [156]"
toString
public void toString(java.lang.StringBuffer sb,
java.lang.String prefix,
int breadth,
int depth)
- This method puts the printable representation into the string buffer.
This is meant to produce a exhaustive form as it is used in tracing
output to the log file.
- Specified by:
toString in interface Node- Overrides:
toString in class AbstractKernNode
- Parameters:
sb - the output string bufferprefix - the prefix string inserted at the beginning of each linebreadth - the breadth of the nodes to displaydepth - the depth of the nodes to display- See Also:
Node.toString(
java.lang.StringBuffer,
java.lang.String,
int,
int)
toText
public void toText(java.lang.StringBuffer sb,
java.lang.String prefix)
- This method puts the printable representation into the string buffer.
This is meant to produce a short form only as it is used in error
messages to the user.
- Specified by:
toText in interface Node- Overrides:
toText in class AbstractKernNode
- Parameters:
sb - the output string bufferprefix - the prefix string inserted at the beginning of each line- See Also:
- "TeX – The Program [191]",
Node.toText(
java.lang.StringBuffer,
java.lang.String)