org.writersforge.catalan.transform.xform
Class MoveProcessor
java.lang.Object
|
+--org.writersforge.catalan.transform.BaseNodeProcessor
|
+--org.writersforge.catalan.transform.xform.XFormProcessor
|
+--org.writersforge.catalan.transform.xform.MoveProcessor
- All Implemented Interfaces:
- org.writersforge.bellows.traverse.NodeProcessor
- public class MoveProcessor
- extends XFormProcessor
A Datum-only NodeProcessor for moving existing XML content to other parts
of the same XML tree. Works on element content or on attributes.
- Author:
- jsheets
|
Constructor Summary |
MoveProcessor(java.lang.String query,
java.lang.String destination,
java.lang.String attribute)
Creates a new instance of MoveProcessor. |
|
Method Summary |
protected org.writersforge.bellows.Datum[] |
getDestinationNodes(org.writersforge.bellows.Datum datum)
Finds the Datum nodes to perform the transformation on. |
protected void |
transformNode(org.writersforge.bellows.Datum node,
org.writersforge.bellows.Datum root)
Performs an in-place transformation on the supplied Datum tree. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MoveProcessor
public MoveProcessor(java.lang.String query,
java.lang.String destination,
java.lang.String attribute)
- Creates a new instance of MoveProcessor. If attribute is null, the
processor will move (recursively) at the element level. If attribute
is set, the processor will move only matching attributes.
- Parameters:
query - Bellows query path to select the source node(s)destination - Bellows query path to select the destination node(s)attribute - optional attribute name
getDestinationNodes
protected org.writersforge.bellows.Datum[] getDestinationNodes(org.writersforge.bellows.Datum datum)
- Finds the Datum nodes to perform the transformation on.
- Parameters:
datum - the input datum tree to select nodes from
- Returns:
- the nodes to operate on
transformNode
protected void transformNode(org.writersforge.bellows.Datum node,
org.writersforge.bellows.Datum root)
- Performs an in-place transformation on the supplied Datum tree.
- Specified by:
transformNode in class XFormProcessor
- Parameters:
node - the current node to operate uponroot - the root of the entire XML tree