cziegeler    2004/01/29 03:13:16

  Modified:    src/java/org/apache/cocoon/xml AttributesImpl.java
  Log:
  Add missing constructor
  
  Revision  Changes    Path
  1.3       +17 -1     
cocoon-2.1/src/java/org/apache/cocoon/xml/AttributesImpl.java
  
  Index: AttributesImpl.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/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:29:10 -0000      1.2
  +++ AttributesImpl.java       29 Jan 2004 11:13:16 -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.
  
  
  

Reply via email to