FileDocCategorySizeDatePackage
SourceTree.javaAPI DocJava SE 6 API1363Tue Jun 10 00:23:12 BST 2008com.sun.org.apache.xpath.internal

SourceTree

public class SourceTree extends Object
This object represents a Source Tree, and any associated information.
xsl.usage
internal

Fields Summary
public String
m_url
The URI of the source tree.
public int
m_root
The root of the source tree, which may or may not be a {@link org.w3c.dom.Document} node.
Constructors Summary
public SourceTree(int root, String url)
Constructor SourceTree

param
root The root of the source tree, which may or may not be a {@link org.w3c.dom.Document} node.
param
url The URI of the source tree.

    m_root = root;
    m_url = url;
  
Methods Summary