blob: a53cd69285e2fafc0232c9378b2c45f77cfe36bd [file] [log] [blame]
/**
* <meta name="usage" content="advanced"/>
* This class implements an RTF Iterator. Currently exists for sole
* purpose of enabling EXSLT object-type function to return "RTF".
*
*/
package org.apache.xpath.axes;
import javax.xml.transform.TransformerException;
public class RTFIterator extends OneStepIteratorForward {
// /**
// * Constructor for RTFIterator
// */
// RTFIterator(Compiler compiler, int opPos, int analysis)
// throws TransformerException {
// super(compiler, opPos, analysis);
// }
/**
* Constructor for RTFIterator
*/
public RTFIterator(int axis) {
super(axis);
}
}