|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TagToken | |
---|---|
info.bliki.htmlcleaner | Modified classes from the htmlcleaner.sourceforge.net/ project. |
info.bliki.wiki.filter | Contains different type of wikipedia scanners and parsers. |
info.bliki.wiki.model | Model classes for rendering Wikipedia texts to HTML, PDF with the IWikiModel interface. |
info.bliki.wiki.tags | Contains the HTML tag classes which are created by the wikipedia parser and model. |
info.bliki.wiki.tags.extension | |
info.bliki.wiki.tags.util | Helper classes for creating the internal DOM. |
Uses of TagToken in info.bliki.htmlcleaner |
---|
Subclasses of TagToken in info.bliki.htmlcleaner | |
---|---|
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. |
Uses of TagToken in info.bliki.wiki.filter |
---|
Subclasses of TagToken in info.bliki.wiki.filter | |
---|---|
class |
WPList
Represents a Wikipedia list. |
class |
WPTable
Represents a wiki table (i.e. table syntax bordered by {| ..... |} ). |
Uses of TagToken in info.bliki.wiki.model |
---|
Fields in info.bliki.wiki.model with type parameters of type TagToken | |
---|---|
protected static java.util.HashMap<java.lang.String,TagToken> |
Configuration.TAG_TOKEN_MAP
Map the HTML token string to the correspoding TagToken implementation |
Methods in info.bliki.wiki.model that return TagToken | |
---|---|
TagToken |
IConfiguration.addTokenTag(java.lang.String key,
TagToken value)
Add a new HTML styled tag to the configuration |
TagToken |
Configuration.addTokenTag(java.lang.String key,
TagToken value)
|
TagToken |
AbstractWikiModel.addTokenTag(java.lang.String key,
TagToken value)
Add a new HTML styled tag to the configuration |
TagToken |
IWikiModel.getNode(int offset)
Get the node at the given offset on the internal stack For example getNode(fWikiModel.stackSize() - 2) returns the node before
the node at top of the stack. |
TagToken |
AbstractWikiModel.getNode(int offset)
Get the node at the given offset on the internal stack For example getNode(fWikiModel.stackSize() - 2) returns the node before
the node at top of the stack. |
TagToken |
IWikiModel.peekNode()
Get the current TagNode on top of the internal stack |
TagToken |
AbstractWikiModel.peekNode()
Get the current TagNode on top of the internal stack |
TagToken |
IWikiModel.popNode()
Pop the current TagNode from top of the internal stack |
TagToken |
AbstractWikiModel.popNode()
Pop the current TagNode from top of the internal stack |
Methods in info.bliki.wiki.model that return types with arguments of type TagToken | |
---|---|
java.util.Map<java.lang.String,TagToken> |
IConfiguration.getTokenMap()
Get the HTML styled tag map for built-in tags |
java.util.Map<java.lang.String,TagToken> |
Configuration.getTokenMap()
|
java.util.Map<java.lang.String,TagToken> |
AbstractWikiModel.getTokenMap()
Get the HTML styled tag map for built-in tags |
Methods in info.bliki.wiki.model with parameters of type TagToken | |
---|---|
TagToken |
IConfiguration.addTokenTag(java.lang.String key,
TagToken value)
Add a new HTML styled tag to the configuration |
TagToken |
Configuration.addTokenTag(java.lang.String key,
TagToken value)
|
TagToken |
AbstractWikiModel.addTokenTag(java.lang.String key,
TagToken value)
Add a new HTML styled tag to the configuration |
boolean |
IWikiModel.pushNode(TagToken node)
Push the given TagNode on top of the internal stack |
boolean |
AbstractWikiModel.pushNode(TagToken node)
Push the given TagNode on top of the internal stack |
Uses of TagToken in info.bliki.wiki.tags |
---|
Subclasses of TagToken in info.bliki.wiki.tags | |
---|---|
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 |
MathTag
Wiki tag rendering TeX math |
class |
NowikiTag
Wiki tag for escaping the wiki syntax. |
class |
PreTag
Wiki tag for the HTML pre Tag. |
class |
PTag
|
class |
ReferencesTag
Wiki tag for references <references /> See Footnotes |
class |
RefTag
Wiki tag for references <ref>reference text... |
class |
SourceTag
Allows source code to be syntax highlighted on the wiki pages. |
class |
TableOfContentTag
Wiki tag for rendering the "table of contents" inside a wikipedia article |
class |
WPATag
|
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 TagToken in info.bliki.wiki.tags.extension |
---|
Subclasses of TagToken in info.bliki.wiki.tags.extension | |
---|---|
class |
ChartTag
Wiki tag for the Google Chart API |
Uses of TagToken in info.bliki.wiki.tags.util |
---|
Methods in info.bliki.wiki.tags.util that return TagToken | |
---|---|
TagToken |
TagStack.peek()
Looks at the TagToken at the top of this stack without
removing it from the stack. |
TagToken |
TagStack.pop()
Removes the TagToken at the top of this stack and returns that
TagToken . |
Methods in info.bliki.wiki.tags.util with parameters of type TagToken | |
---|---|
boolean |
TagStack.push(TagToken item)
Pushes a TagToken item onto the top of this stack. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |