Uses of Class
org.extex.typesetter.type.node.CharNode

Packages that use CharNode
org.extex.backend.documentWriter.dvi This package contains the definitions for a DocumentWriter for dvi-Files. 
org.extex.backend.documentWriter.itextpdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.pdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.postscript.converter This package contains converters for the a PostScript DocumentWriter. 
org.extex.backend.documentWriter.svg This package contains a backend of ExTeX which dumps the information in a SVG format. 
org.extex.backend.documentWriter.text This package contains a backend of ExTeX which dumps the information as text in a readable format to the output file (very simple). 
org.extex.backend.documentWriter.xml This package contains a backend of ExTeX which dumps the information in a XML format. 
org.extex.engine.typesetter.page This package contains the backend support for pages of the core engine of ExTeX
org.extex.font.format.tfm This package contains the definitions and implementations for the TFM-font-metric handling in ExTeX. 
org.extex.font.format.vf This package contains the definitions and implementations for the VF-font-metric handling in ExTeX. 
org.extex.language.hyphenation.base This package contains the base hyphenation table implementation. 
org.extex.language.hyphenation.liang This package contains a implementation for an hyphenation engine. 
org.extex.language.impl This package contains implementations which describe a language. 
org.extex.language.word This package contains classes for treatment of words. 
org.extex.language.word.impl This package contains implementation for the treatment of words. 
org.extex.typesetter This package contains the typesetter definitions for ExTeX. 
org.extex.typesetter.type This package contains type definitions for the typesetter. 
org.extex.typesetter.type.node This package contains the basic data types for nodes as stored in boxed and processed by the typesetter in ExTeX. 
 

Uses of CharNode in org.extex.backend.documentWriter.dvi
 

Methods in org.extex.backend.documentWriter.dvi with parameters of type CharNode
 java.lang.Object DebugNodeVisitor.visitChar(CharNode node, java.lang.Object value)
          Call the visitChar to inspect.
 void DviWriter.writeNode(CharNode node)
          Write a char node to the dvi file.
 

Uses of CharNode in org.extex.backend.documentWriter.itextpdf
 

Methods in org.extex.backend.documentWriter.itextpdf with parameters of type CharNode
 java.lang.Object CollectNodeVisitor.visitChar(CharNode node, java.lang.Object value)
          This method is called when a CharNode has been encountered.
 java.lang.Object PdfNodeVisitor.visitChar(CharNode node, java.lang.Object value)
          This method is called when a CharNode has been encountered.
 

Uses of CharNode in org.extex.backend.documentWriter.pdf
 

Methods in org.extex.backend.documentWriter.pdf with parameters of type CharNode
 java.lang.Object PdfNodeVisitor.visitChar(CharNode node, java.lang.Object value)
           
 

Uses of CharNode in org.extex.backend.documentWriter.postscript.converter
 

Methods in org.extex.backend.documentWriter.postscript.converter with parameters of type CharNode
 java.lang.Object PsBasicConverter.visitChar(CharNode node, java.io.PrintStream out)
          This method is called when a CharNode has been encountered.
 java.lang.Object PsBoxConverter.visitChar(CharNode node, java.io.PrintStream out)
          This method is called when a CharNode has been encountered.
 

Uses of CharNode in org.extex.backend.documentWriter.svg
 

Methods in org.extex.backend.documentWriter.svg with parameters of type CharNode
 java.lang.Object SVGDocumentWriter.visitChar(CharNode node, java.lang.Object value)
          This method is called when a CharNode has been encountered.
 

Uses of CharNode in org.extex.backend.documentWriter.text
 

Methods in org.extex.backend.documentWriter.text with parameters of type CharNode
 java.lang.Object TextDocumentWriter.visitChar(CharNode node, java.lang.Object value)
           
 

Uses of CharNode in org.extex.backend.documentWriter.xml
 

Methods in org.extex.backend.documentWriter.xml with parameters of type CharNode
 java.lang.Object XMLDocumentWriter.visitChar(CharNode node, java.lang.Object value)
           
 

Uses of CharNode in org.extex.engine.typesetter.page
 

Methods in org.extex.engine.typesetter.page with parameters of type CharNode
 Node PageFactoryNodeVisitor.visitChar(CharNode node, java.lang.Boolean isHMode)
          This method is called when a CharNode has been encountered.
 

Uses of CharNode in org.extex.font.format.tfm
 

Methods in org.extex.font.format.tfm that return CharNode
 CharNode LoadableTfmFont.buildCharNode(UnicodeChar uc, TypesettingContext tc, NodeFactory factory, TypesettingContextFactory tcFactory)
          Create a node for a Unicode character.
 

Uses of CharNode in org.extex.font.format.vf
 

Methods in org.extex.font.format.vf that return CharNode
 CharNode LoadableVfFont.buildCharNode(UnicodeChar uc, TypesettingContext tcArg, NodeFactory factory, TypesettingContextFactory tcFactory)
          Create a node for a Unicode character.
 

Uses of CharNode in org.extex.language.hyphenation.base
 

Methods in org.extex.language.hyphenation.base with parameters of type CharNode
 boolean BaseHyphenationTable.hyphenateOne(NodeList nodes, TypesetterOptions context, int start, UnicodeCharList word, CharNode hyphenNode)
          Hyphenate a single word.
 void BaseHyphenationTable.insertShy(NodeList nodes, int insertionPoint, boolean[] spec, CharNode hyphenNode)
          Insert hyphenation points into a list of nodes.
 

Uses of CharNode in org.extex.language.hyphenation.liang
 

Methods in org.extex.language.hyphenation.liang with parameters of type CharNode
 boolean LiangsHyphenationTable.hyphenateOne(NodeList nodelist, TypesetterOptions context, int start, UnicodeCharList word, CharNode hyphenNode)
           
 

Uses of CharNode in org.extex.language.impl
 

Methods in org.extex.language.impl with parameters of type CharNode
 void FutureLanguage.insertShy(NodeList nodes, int insertionPoint, boolean[] spec, CharNode hyphenNode)
          Insert hyphenation points into a list of nodes.
 

Uses of CharNode in org.extex.language.word
 

Methods in org.extex.language.word with parameters of type CharNode
 void WordTokenizer.insertShy(NodeList nodes, int insertionPoint, boolean[] spec, CharNode hyphenNode)
          Insert hyphenation points into a list of nodes.
 

Uses of CharNode in org.extex.language.word.impl
 

Methods in org.extex.language.word.impl with parameters of type CharNode
 void ExTeXWords.insertShy(NodeList nodes, int insertionPoint, boolean[] spec, CharNode hyphenNode)
           
 

Uses of CharNode in org.extex.typesetter
 

Methods in org.extex.typesetter that return CharNode
 CharNode CharNodeBuilder.buildCharNode(UnicodeChar uc, TypesettingContext tc, NodeFactory factory, TypesettingContextFactory tcFactory)
          Create a node for a Unicode character.
 

Uses of CharNode in org.extex.typesetter.type
 

Methods in org.extex.typesetter.type that return CharNode
 CharNode[] Node.getChars()
          Getter for the array of characters enclosed in this node.
 

Methods in org.extex.typesetter.type with parameters of type CharNode
 R NodeVisitor.visitChar(CharNode node, A value)
          This method is called when a CharNode has been encountered.
 java.lang.Object AbstractNodeVisitor.visitChar(CharNode node, java.lang.Object value)
          This method is called when a CharNode has been encountered.
 

Uses of CharNode in org.extex.typesetter.type.node
 

Subclasses of CharNode in org.extex.typesetter.type.node
 class LigatureNode
          The ligature node represents a ligature of several characters.
 class VirtualCharNode
          This class exposes itself as character node but contains an hlist internally.
 

Fields in org.extex.typesetter.type.node declared as CharNode
protected static CharNode[] AbstractNode.NO_CHARS
          The constant NO_CHAR contains the empty array of CharNode.
 

Methods in org.extex.typesetter.type.node that return CharNode
 CharNode[] AbstractNode.getChars()
          Getter for the array of characters enclosed in this node.
 CharNode[] VirtualCharNode.getChars()
          Getter for the array of characters enclosed in this node.
 CharNode[] CharNode.getChars()
          Getter for the array of characters enclosed in this node.
 CharNode[] LigatureNode.getChars()
          Getter for the array of characters enclosed in this node.
 CharNode[] GenericNodeList.getChars()
          Getter for the array of characters enclosed in this node.
 CharNode LigatureNode.getLeft()
          Getter for left node.
 CharNode LigatureNode.getRight()
          Getter for right node.
 

Constructors in org.extex.typesetter.type.node with parameters of type CharNode
LigatureNode(TypesettingContext context, UnicodeChar uc, CharNode left, CharNode right)
          Creates a new object.