johng 01/07/15 12:55:27 Modified: java/src/org/apache/xalan/lib/sql SQLDocument.java Log: Fixup from previous check-in, defined new functions. Submitted by: John Gentilin mailto://[EMAIL PROTECTED] Revision Changes Path 1.4 +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.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- SQLDocument.java 2001/07/15 19:30:57 1.3 +++ SQLDocument.java 2001/07/15 19:55:27 1.4 @@ -1028,6 +1028,30 @@ /*********************************************************************/ /*********************************************************************/ + + /** + * 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; + } + /** * @param parm1 * @return
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
