|
HTML Parser Home Page | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.htmlparser.nodes.AbstractNode
org.htmlparser.nodes.RemarkNode
public class RemarkNode
The remark tag is identified and represented by this class.
| Field Summary | |
|---|---|
protected String |
mText
The contents of the remark node, or override text. |
| Fields inherited from class org.htmlparser.nodes.AbstractNode |
|---|
children, mPage, nodeBegin, nodeEnd, parent |
| Constructor Summary | |
|---|---|
RemarkNode(Page page,
int start,
int end)
Constructor takes in the page and beginning and ending posns. |
|
RemarkNode(String text)
Constructor takes in the text string. |
|
| Method Summary | |
|---|---|
void |
accept(NodeVisitor visitor)
Remark visiting code. |
String |
getText()
Returns the text contents of the comment tag. |
void |
setText(String text)
Sets the string contents of the node. |
String |
toHtml(boolean verbatim)
Return The full HTML remark. |
String |
toPlainTextString()
Return the remark text. |
String |
toString()
Print the contents of the remark tag. |
| Methods inherited from class org.htmlparser.nodes.AbstractNode |
|---|
clone, collectInto, doSemanticAction, getChildren, getEndPosition, getFirstChild, getLastChild, getNextSibling, getPage, getParent, getPreviousSibling, getStartPosition, setChildren, setEndPosition, setPage, setParent, setStartPosition, toHtml |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.htmlparser.Node |
|---|
clone, collectInto, doSemanticAction, getChildren, getEndPosition, getFirstChild, getLastChild, getNextSibling, getPage, getParent, getPreviousSibling, getStartPosition, setChildren, setEndPosition, setPage, setParent, setStartPosition, toHtml |
| Field Detail |
|---|
protected String mText
| Constructor Detail |
|---|
public RemarkNode(String text)
text - The string node text. For correct generation of HTML, this
should not contain representations of tags (unless they are balanced).
public RemarkNode(Page page,
int start,
int end)
page - The page this remark is on.start - The beginning position of the remark.end - The ending positiong of the remark.| Method Detail |
|---|
public String getText()
getText in interface NodegetText in interface RemarkgetText in class AbstractNodeNode.setText(java.lang.String)public void setText(String text)
setText in interface NodesetText in interface RemarksetText in class AbstractNodetext - The new text for the node.Node.getText()public String toPlainTextString()
toPlainTextString in interface NodetoPlainTextString in class AbstractNodepublic String toHtml(boolean verbatim)
toHtml in interface NodetoHtml in class AbstractNodeverbatim - If true return as close to the original
page text as possible.
public String toString()
toString in interface NodetoString in class AbstractNodepublic void accept(NodeVisitor visitor)
accept in interface Nodeaccept in class AbstractNodevisitor - The NodeVisitor object to invoke
visitRemarkNode() on.
|
© 2006 Derrick Oswald Sep 17, 2006
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
| HTML Parser is an open source library released under Common Public License. | |