| com.caucho.xml.CauchoNode
All known Subclasses: com.caucho.xml.QAbstractNode, com.caucho.xpath.pattern.NamespaceNode,
CauchoNode | public interface CauchoNode extends Node(Code) | | CauchoNode extends the DOM, providing namespace support and input file
support.
Application can print the filename and line number where the
error occurred.
|
checkValid | public boolean checkValid() throws Exception(Code) | | For testing...
|
getBaseURI | public String getBaseURI()(Code) | | Returns the source uri of this node.
|
getCanonicalName | public String getCanonicalName()(Code) | | Returns the node's canonical name.
e.g. for foo:bar:baz, the prefix name might be '{/caucho/1.0}baz'
|
getColumn | public int getColumn()(Code) | | Returns the source column of this node.
p
|
getFilename | public String getFilename()(Code) | | Returns the source filename of this node.
|
getLine | public int getLine()(Code) | | Returns the source line of this node.
|
getTextValue | public String getTextValue()(Code) | | Returns the text value of the node
|
print | public void print(WriteStream os) throws IOException(Code) | | Prints the node to a stream
|
printHtml | public void printHtml(WriteStream os) throws IOException(Code) | | Prints the node as html to a stream
|
printPretty | public void printPretty(WriteStream os) throws IOException(Code) | | Pretty-prints the node to a stream
|
setLocation | public void setLocation(String systemId, String filename, int line, int column)(Code) | | Sets the location
|
|
|