Uses of Interface
org.htmlcleaner.BaseToken

Packages that use BaseToken
info.bliki.html.wikipedia   
info.bliki.wiki.filter   
info.bliki.wiki.model Model classes for rendering wikipedia texts to HTML, LaTeX 
info.bliki.wiki.tags   
info.bliki.wiki.tags.util   
org.htmlcleaner   
 

Uses of BaseToken in info.bliki.html.wikipedia
 

Methods in info.bliki.html.wikipedia that return BaseToken
 BaseToken AbstractHTMLTag.getFirstContent(java.util.List children, java.lang.String tagName)
           
 

Methods in info.bliki.html.wikipedia with parameters of type BaseToken
 void ToWikipedia.nodeToWiki(BaseToken item, java.lang.StringBuilder resultBuffer)
           
 void IHTMLToWiki.nodeToWiki(BaseToken node, java.lang.StringBuilder resultBuffer)
           
 

Uses of BaseToken in info.bliki.wiki.filter
 

Classes in info.bliki.wiki.filter that implement BaseToken
 class WPList
          Represents a wikipedia list
 class WPTable
          Represents a wiki table (i.e. table syntax bordered by {| ..... |} ).
 

Method parameters in info.bliki.wiki.filter with type arguments of type BaseToken
 void LaTeXConverter.nodesToText(java.util.List<BaseToken> nodes, java.lang.Appendable resultBuffer, IWikiModel model)
           
 void ITextConverter.nodesToText(java.util.List<BaseToken> nodes, java.lang.Appendable resultBuffer, IWikiModel model)
          Convert the list of TagTokens into a given HTML string buffer
 void HTMLConverter.nodesToText(java.util.List<BaseToken> nodes, java.lang.Appendable resultBuffer, IWikiModel model)
           
 

Uses of BaseToken in info.bliki.wiki.model
 

Methods in info.bliki.wiki.model that return types with arguments of type BaseToken
 java.util.List<BaseToken> AbstractWikiModel.toNodeList(java.lang.String rawWikiText)
           
 

Methods in info.bliki.wiki.model with parameters of type BaseToken
 void IWikiModel.append(BaseToken contentNode)
          Append the content as a child on the top node of the internal stack
 void AbstractWikiModel.append(BaseToken contentNode)
           
 

Uses of BaseToken in info.bliki.wiki.tags
 

Classes in info.bliki.wiki.tags that implement BaseToken
 class ATag
           
 class BrTag
           
 class DdTag
           
 class DlTag
           
 class DtTag
           
 class HrTag
           
 class HTMLBlockTag
          A wiki tag that's partitioning the HTML document
 class HTMLEndTag
           
 class HTMLTag
           
 class IncludeonlyTag
          Text between <includeonly> and </includeonly> will be processed and displayed only when the page is being included.
 class MathTag
          Wiki tag rendering TeX math
 class NoincludeTag
          Anything between <noinclude> and </noinclude> will be processed and displayed only when the page is being viewed directly; it will not be included or substituted:
 class NowikiTag
          Wiki tag for escaping the wiki syntax.
 class PreTag
          Wiki tag for the HTML pre Tag.
 class PTag
           
 class ReferencesTag
           
 class RefTag
          Wiki tag for references <ref>reference text...
 class SourceTag
           
 class TableOfContentTag
          Wiki tag for "table of contents" inside a wikipedia article
 class WPBoldItalicTag
          A special Wikipedia tag (i.e. ==, ===, ''', '', ...)
 class WPParagraphTag
           
 class WPPreTag
          A wiki block starting with a space on each line, rendered with the HTML pre Tag
 class WPTag
          A special Wikipedia tag (i.e. ==, ===, ''', '', ...)
 

Uses of BaseToken in info.bliki.wiki.tags.util
 

Methods in info.bliki.wiki.tags.util that return types with arguments of type BaseToken
 java.util.List<BaseToken> TagStack.getNodeList()
          Return the internal list of nodes (size maybe 0)
 

Methods in info.bliki.wiki.tags.util with parameters of type BaseToken
 void TagStack.append(BaseToken contentNode)
           
 

Uses of BaseToken in org.htmlcleaner
 

Classes in org.htmlcleaner that implement BaseToken
 class CommentToken
          HTML comment token.
 class ContentToken
          HTML text token.
 class DoctypeToken
          HTML doctype token.
 class EndTagToken
           HTML tag end token.
 class TagNode
           XML node node tag - it is produced during cleaning process when all start and end tokens are removed and replaced by instances of TagNode.
 class TagToken
           HTML tag token - descendants are start (TagNode) and end token (EndTagToken).