Serialized Form


Package info.bliki.wiki.cache

Class info.bliki.wiki.cache.WikiStringBuilder extends info.bliki.wiki.cache.AbstractWikiStringBuilder implements Serializable

serialVersionUID: 4383685877147921099L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException

Reads the state of a StringBuilder from the passed stream and restores it to this instance.

Throws:
java.io.IOException - if the stream throws it during the read.
java.lang.ClassNotFoundException - if the stream throws it during the read.

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException

Writes the state of this object to the stream passed.

Serial Data:
int - The length of this object. char[] - The buffer from this object, which may be larger than the length field.
Throws:
java.io.IOException - if the stream throws it during the write.

Package info.bliki.wiki.tags.util

Class info.bliki.wiki.tags.util.AbstractNode extends java.lang.Object implements Serializable

Serialized Fields

nodeBegin

int nodeBegin
The beginning position of the tag in the line


nodeEnd

int nodeEnd
The ending position of the tag in the line

Class info.bliki.wiki.tags.util.Attribute extends java.lang.Object implements Serializable

serialVersionUID: 1010771448030194792L

Serialized Fields

mName

java.lang.String mName
The name of this attribute. The part before the equals sign, or the stand-alone attribute. This will be null if the attribute is whitespace.


mAssignment

java.lang.String mAssignment
The assignment string of the attribute. The equals sign. This will be null if the attribute is a stand-alone attribute.


mValue

java.lang.String mValue
The value of the attribute. The part after the equals sign. This will be null if the attribute is an empty or stand-alone attribute.


mQuote

char mQuote
The quote, if any, surrounding the value of the attribute, if any. This will be zero if there are no quotes around the value.

Class info.bliki.wiki.tags.util.NodeAttribute extends Attribute implements Serializable

serialVersionUID: -7794436167788452243L

Serialized Fields

mText

char[] mText
The page this attribute is extracted from.


mNameStart

int mNameStart
The starting offset of the name within the page. If negative, the name is considered null.


mNameEnd

int mNameEnd
The ending offset of the name within the page.


mValueStart

int mValueStart
The starting offset of the value within the page. If negative, the value is considered null.


mValueEnd

int mValueEnd
The ending offset of the name within the page.

Class info.bliki.wiki.tags.util.TagStack extends java.util.ArrayList<TagToken> implements Serializable

serialVersionUID: 7377721039394435077L

Serialized Fields

fNodeList

java.util.ArrayList<E> fNodeList

Class info.bliki.wiki.tags.util.WikiTagNode extends AbstractNode implements Serializable

serialVersionUID: -5135255005207719745L

Serialized Fields

mAttributes

java.util.List<E> mAttributes
The tag attributes. Objects of type Attribute. The first element is the tag name, subsequent elements being either whitespace or real attributes.


Package org.htmlcleaner

Class org.htmlcleaner.HtmlTagProvider extends java.util.HashMap implements Serializable