blob: be1ca70a14387419f7632370296e94bc90182b5f [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;
import org.apache.xpath.compiler.Compiler;
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);
}
}