public interface

NotationDeclaration

implements XMLEvent
javax.xml.stream.events.NotationDeclaration

Class Overview

An interface for handling Notation Declarations Receive notification of a notation declaration event. It is up to the application to record the notation for later reference, At least one of publicId and systemId must be non-null. There is no guarantee that the notation declaration will be reported before any unparsed entities that use it.

Summary

[Expand]
Inherited Constants
From interface javax.xml.stream.XMLStreamConstants
Public Methods
abstract String getName()
The notation name.
abstract String getPublicId()
The notation's public identifier, or null if none was given.
abstract String getSystemId()
The notation's system identifier, or null if none was given.
[Expand]
Inherited Methods
From interface javax.xml.stream.events.XMLEvent

Public Methods

public abstract String getName ()

The notation name.

public abstract String getPublicId ()

The notation's public identifier, or null if none was given.

public abstract String getSystemId ()

The notation's system identifier, or null if none was given.