LibreOffice Module xmerge (master) 1
Public Member Functions | Protected Member Functions | List of all members
org.openoffice.xmerge.merger.diff.TextNodeIterator Class Reference

This is an implementation of the Iterator interface. More...

Inheritance diagram for org.openoffice.xmerge.merger.diff.TextNodeIterator:
[legend]
Collaboration diagram for org.openoffice.xmerge.merger.diff.TextNodeIterator:
[legend]

Public Member Functions

 TextNodeIterator (Node node)
 Standard constructor. More...
 
- Public Member Functions inherited from org.openoffice.xmerge.merger.diff.NodeIterator
 NodeIterator (ConverterCapabilities cc, Node node)
 Standard constructor. More...
 
Object next ()
 Move to next element in the sequence. More...
 
Object previous ()
 
Object start ()
 Move to the beginning of the sequence. More...
 
Object end ()
 
Object currentElement ()
 Return the current element Object content. More...
 
int elementCount ()
 Return the total element count in the sequence. More...
 
boolean equivalent (Object obj1, Object obj2)
 A method to allow the difference algorithm to test whether the obj1 and obj2 in the Iterator are considered equal. More...
 
void refresh ()
 A method to force the Iterator to traverse the tree again to refresh the content. More...
 
Object next ()
 Move to next element in the sequence. More...
 
Object start ()
 Move to the beginning of the sequence. More...
 
Object currentElement ()
 Return the current element Object content. More...
 
int elementCount ()
 Return the total element count in the sequence. More...
 
boolean equivalent (Object obj1, Object obj2)
 A method to allow the difference algorithm to test whether the obj1 and obj2 in the Iterator are considered equal. More...
 
void refresh ()
 A method to force the Iterator to traverse the tree again to refresh the content. More...
 

Protected Member Functions

boolean nodeSupported (Node node)
 Overwrite the parent nodeSupported method. More...
 
- Protected Member Functions inherited from org.openoffice.xmerge.merger.diff.NodeIterator
boolean compareNode (Node node1, Node node2)
 Used to compare two Node objects (type/name/value) and all their children Node objects. More...
 
boolean childrenEqual (Node node1, Node node2)
 Compare the children of two Node objects. More...
 
abstract boolean nodeSupported (Node node)
 Check whether a Node is supported. More...
 

Detailed Description

This is an implementation of the Iterator interface.

It will traverse the tree and find text/space/tab Node sequences.

Note: Once the XML Tree is parsed, then the Iterator will be a snapshot of that tree. That means even the tree is modified later, then the cached paragraph Node list will not be updated accordingly. For this reason and for performance reasons this Iterator does not support any operation methods such as insert, remove or replace. The main purpose of this Iterator is to be used with difference, not with merge.

Definition at line 38 of file TextNodeIterator.java.

Constructor & Destructor Documentation

◆ TextNodeIterator()

org.openoffice.xmerge.merger.diff.TextNodeIterator.TextNodeIterator ( Node  node)
inline

Standard constructor.

Parameters
nodeThe initial root Node.

Definition at line 45 of file TextNodeIterator.java.

Member Function Documentation

◆ nodeSupported()

boolean org.openoffice.xmerge.merger.diff.TextNodeIterator.nodeSupported ( Node  node)
inlineprotected

Overwrite the parent nodeSupported method.

Only text Node objects are supported.

Parameters
nodeNode to check.
Returns
true if the Node is supported, false otherwise.

Reimplemented from org.openoffice.xmerge.merger.diff.NodeIterator.

Definition at line 60 of file TextNodeIterator.java.

References String, org.openoffice.xmerge.converter.xml.OfficeConstants.TAG_LINE_BREAK, org.openoffice.xmerge.converter.xml.OfficeConstants.TAG_SPACE, and org.openoffice.xmerge.converter.xml.OfficeConstants.TAG_TAB_STOP.


The documentation for this class was generated from the following file: