sboag 01/06/20 13:42:07
Modified: java/src/org/apache/xpath/axes SelfIteratorNoPredicate.java
Log:
Make a default public constructor.
Revision Changes Path
1.4 +17 -0
xml-xalan/java/src/org/apache/xpath/axes/SelfIteratorNoPredicate.java
Index: SelfIteratorNoPredicate.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xpath/axes/SelfIteratorNoPredicate.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SelfIteratorNoPredicate.java 2001/06/20 20:30:48 1.3
+++ SelfIteratorNoPredicate.java 2001/06/20 20:42:07 1.4
@@ -35,6 +35,23 @@
{
super(compiler, opPos, analysis, false);
}
+
+ /**
+ * Create a SelfIteratorNoPredicate object.
+ *
+ * @param compiler A reference to the Compiler that contains the op map.
+ * @param opPos The position within the op map, which contains the
+ * location path expression for this itterator.
+ * @param analysis Analysis bits.
+ *
+ * @throws javax.xml.transform.TransformerException
+ */
+ public SelfIteratorNoPredicate()
+ throws javax.xml.transform.TransformerException
+ {
+ super(null);
+ }
+
/**
* Returns the next node in the set and advances the position of the
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]