| javax.xml.stream.EventFilter
EventFilter | public interface EventFilter (Code) | | This interface declares a simple filter interface that one can
create to filter XMLEventReaders
version: 1.0 author: Copyright (c) 2003 by BEA Systems. All Rights Reserved. |
Method Summary | |
public boolean | accept(XMLEvent event) Tests whether this event is part of this stream. |
accept | public boolean accept(XMLEvent event)(Code) | | Tests whether this event is part of this stream. This method
will return true if this filter accepts this event and false
otherwise.
Parameters: event - the event to test true if this filter accepts this event, false otherwise |
|
|