BEA Systems, Inc.

WebLogic Server 6.1 API Reference

weblogic.apache.xalan.stree
Class NotationImpl

java.lang.Object
  |
  +--weblogic.apache.xalan.stree.NotationImpl

public class NotationImpl
extends java.lang.Object

Class to represent Notation nodes

This class is based on an implementation from the Apache XML Project. In future releases the XML parser, XSLT processor, and associated classes will likely be updated to be based on a later version of the Apache implementations. Since Apache does not guarantee backwards compatibility between versions of their software, we cannot guarantee backwards compatibility of any of the classes contained in the weblogic.apache package or sub-packages.


Constructor Summary
NotationImpl()
           
 
Method Summary
 java.lang.String getLocalName()
          Returns the local part of the qualified name of this node.
 java.lang.String getNodeName()
          Returns the node name.
 short getNodeType()
          A short integer indicating what type of node this is.
 java.lang.String getPublicId()
          The Public Identifier for this Notation.
 java.lang.String getSystemId()
          The System Identifier for this Notation.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NotationImpl

public NotationImpl()
Method Detail

getNodeType

public short getNodeType()
A short integer indicating what type of node this is. The named constants for this value are defined in the org.w3c.dom.Node interface.

Returns:
Node type

getPublicId

public java.lang.String getPublicId()
The Public Identifier for this Notation. If no public identifier was specified, this will be null.

Returns:
Public identifier of null if none specified.

getSystemId

public java.lang.String getSystemId()
The System Identifier for this Notation. If no system identifier was specified, this will be null.

Returns:
System identifier of null if none specified.

getNodeName

public java.lang.String getNodeName()
Returns the node name.

Returns:
Notation Node name

getLocalName

public java.lang.String getLocalName()
Returns the local part of the qualified name of this node.
For nodes created with a DOM Level 1 method, such as createElement from the Document interface, it is null.

Returns:
Local part of the qualified name of the Notation Node

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs61

WebLogic classes and methods that do not appear in this reference are not public and are not supported.