FileDocCategorySizeDatePackage
NameSpace.javaAPI DocJava SE 6 API1653Tue Jun 10 00:23:10 BST 2008com.sun.org.apache.xml.internal.utils

NameSpace

public class NameSpace extends Object implements Serializable
A representation of a namespace. One of these will be pushed on the namespace stack for each element.
xsl.usage
advanced

Fields Summary
static final long
serialVersionUID
public NameSpace
m_next
Next NameSpace element on the stack.
public String
m_prefix
Prefix of this NameSpace element.
public String
m_uri
Namespace URI of this NameSpace element.
Constructors Summary
public NameSpace(String prefix, String uri)
Construct a namespace for placement on the result tree namespace stack.

param
prefix Prefix of this element
param
uri URI of this element

  // if null, then Element namespace is empty.

                             
      
  
    m_prefix = prefix;
    m_uri = uri;
  
Methods Summary