|
BEA Systems, Inc. | |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Defines objects which wish to be notified when events
encountered in an XMLInputStream
match a particular
xpath. When the stream's client asks for the next()
event, it is evaluated against an xpath; if it matches, the
observer is notified of the event via the
observeMatch()
just before it is returned to the
client.
Instances of this class are installed in an
where they are paired
with a XPathStreamFactory
for which they
wish to receive match notifications.StreamXPath
Since XPathSreamObservers
will receive
notifications on all of the streams created by the
XPathStreamFactory
in which they are installed, it is
usually necessary for them to be stateless unless it can be
guaranteed that the observer will never be accessed by multiple
threads or for matching against different streams.
An example of such a case may occur if a client wishes to alter the stream based on xpath matches. Although this interface does not provide facilities for altering the stream, match-based mutations of the stream can easily be performed by creating a new class which does the following:
XMLInputStream
XPathStreamObserver
XPathStreamFactory
.XMLInputStream
created by that factory.observeMatch
that
produces some state that is consumed by its implementation of
XMLInputStream.next()
. Typically, this might
mean that observeMatch()
writes replacement
events to an intermediate event buffer which is drained by
the implementation of next()
, which will always
try to return the next element from the buffer, and
returns super.next()
only if the buffer is
empty.
Method Summary | |
void |
observe(XMLEvent event)
Handles notification when an XMLEvent is encountered on the stream which represents a matching node that is not an attribute or namespace node. |
void |
observeAttribute(StartElement event,
Attribute attribute)
Handles notification when an XMLEvent is encountered on the stream which contains an attribute meets the criteria with which the observer was installed in the XPathStreamFactory. |
void |
observeNamespace(StartElement event,
Attribute attribute)
|
Method Detail |
public void observe(XMLEvent event)
event
- The XMLEvent which matched the XPath.public void observeAttribute(StartElement event, Attribute attribute)
event
- The XMLEvent which contains the attribute which matchedattribute
- The Attribute which matchedpublic void observeNamespace(StartElement event, Attribute attribute)
event
- The XMLEvent which contains the attribute which matchedattribute
- The Attribute which contains the matched namespace
declaration which matched
|
Documentation is available at http://download.oracle.com/docs/cd/E13222_01/wls/docs90 Copyright 2005 BEA Systems Inc. |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |