sboag 00/11/06 09:47:56
Modified: java/src/org/apache/xalan/stree ElementImpl.java
Log:
Documentation changes, only pass ID and elem to setIDAttribute.
Revision Changes Path
1.18 +4 -9
xml-xalan/java/src/org/apache/xalan/stree/ElementImpl.java
Index: ElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/stree/ElementImpl.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ElementImpl.java 2000/10/30 18:43:48 1.17
+++ ElementImpl.java 2000/11/06 17:47:48 1.18
@@ -327,18 +327,13 @@
}
/**
- * NEEDSDOC Method setIDAttribute
+ * Set the ID string to element association for this node.
*
- *
- * NEEDSDOC @param namespaceURI
- * NEEDSDOC @param qualifiedName
- * NEEDSDOC @param value
+ * @param value The ID string, should not be null.
*/
- public void setIDAttribute(String namespaceURI, String qualifiedName,
- String value)
+ public void setIDAttribute(String value)
{
- getDocumentImpl().setIDAttribute(namespaceURI, qualifiedName, value,
- this);
+ getDocumentImpl().setIDAttribute(value, this);
}
/**