sboag 01/07/12 13:02:50
Modified: java/src/org/apache/xalan/lib/sql SQLDocument.java
SQLErrorDocument.java
Log:
Added setProperty and getSourceLocatorFor empty methods.
Revision Changes Path
1.2 +24 -0 xml-xalan/java/src/org/apache/xalan/lib/sql/SQLDocument.java
Index: SQLDocument.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/sql/SQLDocument.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SQLDocument.java 2001/07/12 05:01:52 1.1
+++ SQLDocument.java 2001/07/12 20:02:44 1.2
@@ -1329,5 +1329,29 @@
if (DEBUG) System.out.println("getAxisIterator("+parm1+")");
return super.getAxisIterator( parm1);
}
+
+ /**
+ * For the moment all the run time properties are ignored by this
+ * class.
+ *
+ * @param property a <code>String</code> value
+ * @param value an <code>Object</code> value
+ */
+ public void setProperty(String property, Object value)
+ {
+ }
+
+ /**
+ * No source information is available for DOM2DTM, so return
+ * <code>null</code> here.
+ *
+ * @param node an <code>int</code> value
+ * @return null
+ */
+ public javax.xml.transform.SourceLocator getSourceLocatorFor(int node)
+ {
+ return null;
+ }
+
}
1.2 +22 -0
xml-xalan/java/src/org/apache/xalan/lib/sql/SQLErrorDocument.java
Index: SQLErrorDocument.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/lib/sql/SQLErrorDocument.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SQLErrorDocument.java 2001/07/12 05:01:52 1.1
+++ SQLErrorDocument.java 2001/07/12 20:02:45 1.2
@@ -316,6 +316,28 @@
}
+ /**
+ * For the moment all the run time properties are ignored by this
+ * class.
+ *
+ * @param property a <code>String</code> value
+ * @param value an <code>Object</code> value
+ */
+ public void setProperty(String property, Object value)
+ {
+ }
+
+ /**
+ * No source information is available for DOM2DTM, so return
+ * <code>null</code> here.
+ *
+ * @param node an <code>int</code> value
+ * @return null
+ */
+ public javax.xml.transform.SourceLocator getSourceLocatorFor(int node)
+ {
+ return null;
+ }
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]