cziegeler 2004/01/29 03:15:10
Modified: src/java/org/apache/cocoon/xml AttributesImpl.java
Log:
Add missing constructor
Revision Changes Path
1.3 +17 -1
cocoon-2.2/src/java/org/apache/cocoon/xml/AttributesImpl.java
Index: AttributesImpl.java
===================================================================
RCS file:
/home/cvs/cocoon-2.2/src/java/org/apache/cocoon/xml/AttributesImpl.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- AttributesImpl.java 11 Dec 2003 14:28:50 -0000 1.2
+++ AttributesImpl.java 29 Jan 2004 11:15:10 -0000 1.3
@@ -50,6 +50,8 @@
*/
package org.apache.cocoon.xml;
+import org.xml.sax.Attributes;
+
/**
* A helper Class creating SAX Attributes
*
@@ -57,6 +59,20 @@
* @version CVS $Id$
*/
public class AttributesImpl extends org.xml.sax.helpers.AttributesImpl {
+
+ /**
+ * Constructor
+ */
+ public AttributesImpl() {
+ super();
+ }
+
+ /**
+ * Constructor
+ */
+ public AttributesImpl(Attributes attr) {
+ super(attr);
+ }
/**
* Add an attribute of type CDATA with empty Namespace to the end of
the list.