Uses of Interface
com.topologi.diffx.event.OpenElementEvent

Packages that use OpenElementEvent
com.topologi.diffx.event The event interfaces used by the Diff-X algorithm. 
com.topologi.diffx.event.impl The events implemnentations used by the Diff-X algorithm. 
 

Uses of OpenElementEvent in com.topologi.diffx.event
 

Methods in com.topologi.diffx.event that return OpenElementEvent
 OpenElementEvent CloseElementEvent.getOpenElement()
          Returns the corresponding event element.
 

Methods in com.topologi.diffx.event with parameters of type OpenElementEvent
 boolean CloseElementEvent.match(OpenElementEvent event)
          Indicates whether the specified open element event matches this close element event.
 

Uses of OpenElementEvent in com.topologi.diffx.event.impl
 

Classes in com.topologi.diffx.event.impl that implement OpenElementEvent
 class OpenElementEventImpl
          A basic implementation of the close element event.
 class OpenElementEventNSImpl
          The event corresponding to the startElement SAX event.
 

Methods in com.topologi.diffx.event.impl that return OpenElementEvent
 OpenElementEvent EventFactory.makeOpenElement(String uri, String name)
          Returns the open element event from the uri and name given.
 OpenElementEvent EventFactory.makeOpenElement(String uri, String localName, String qName)
          Returns the open element event from the uri and names given.
 OpenElementEvent CloseElementEventNSImpl.getOpenElement()
           
 OpenElementEvent CloseElementEventImpl.getOpenElement()
           
 

Methods in com.topologi.diffx.event.impl with parameters of type OpenElementEvent
 CloseElementEvent EventFactory.makeCloseElement(OpenElementEvent open)
          Returns the close element event from the corresponding open element event.
 boolean CloseElementEventNSImpl.match(OpenElementEvent event)
           
 boolean CloseElementEventImpl.match(OpenElementEvent event)
          Returns true if the open element has the same name.
 

Constructors in com.topologi.diffx.event.impl with parameters of type OpenElementEvent
CloseElementEventNSImpl(OpenElementEvent event)
          Creates a new close element event from the corresponding open element event.
CloseElementEventImpl(OpenElementEvent event)
          Creates a new close element event that corresponds to the given open element.