You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by an...@apache.org on 2002/05/04 07:30:10 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/util XMLAttributesImpl.java

andyc       02/05/03 22:30:10

  Modified:    java/docs releases.xml
               java/src/org/apache/xerces/util XMLAttributesImpl.java
  Log:
  Removed dependence on SAX attribute interfaces from XMLAttributesImpl
  utility class. The AbstractSAXParser already defines a SAX attribute
  proxy class so that the parser and components can be properly layered.
  
  Revision  Changes    Path
  1.121     +9 -1      xml-xerces/java/docs/releases.xml
  
  Index: releases.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/docs/releases.xml,v
  retrieving revision 1.120
  retrieving revision 1.121
  diff -u -r1.120 -r1.121
  --- releases.xml	26 Apr 2002 22:10:03 -0000	1.120
  +++ releases.xml	4 May 2002 05:30:10 -0000	1.121
  @@ -1,5 +1,5 @@
   <?xml version='1.0' encoding='UTF-8'?>
  -<!-- $Id: releases.xml,v 1.120 2002/04/26 22:10:03 sandygao Exp $ -->
  +<!-- $Id: releases.xml,v 1.121 2002/05/04 05:30:10 andyc Exp $ -->
   <!DOCTYPE releases SYSTEM 'dtd/releases.dtd'>
   <releases>
    <release version="TBD">
  @@ -7,6 +7,14 @@
         This release fixes a number of bugs, and adds some functionality.
     </desc>
     <changes>
  +    <update>
  +     <note>
  +      Removed dependence on SAX attribute interfaces from XMLAttributesImpl
  +      utility class. The AbstractSAXParser already defines a SAX attribute
  +      proxy class so that the parser and components can be properly layered.
  +     </note>
  +     <submitter name='Andy Clark'/>
  +    </update>
       <update>
        <note>
         Improved handling of settings in parser classes making it easier
  
  
  
  1.15      +2 -5      xml-xerces/java/src/org/apache/xerces/util/XMLAttributesImpl.java
  
  Index: XMLAttributesImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/util/XMLAttributesImpl.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- XMLAttributesImpl.java	29 Jan 2002 01:15:18 -0000	1.14
  +++ XMLAttributesImpl.java	4 May 2002 05:30:10 -0000	1.15
  @@ -62,9 +62,6 @@
   import org.apache.xerces.xni.XMLString;
   import org.apache.xerces.xni.Augmentations;
   
  -import org.xml.sax.AttributeList;
  -import org.xml.sax.Attributes;
  -
   /**
    * The XMLAttributesImpl class is an implementation of the XMLAttributes
    * interface which defines a collection of attributes for an element. 
  @@ -81,10 +78,10 @@
    * @author Andy Clark, IBM 
    * @author Elena Litani, IBM
    *
  - * @version $Id: XMLAttributesImpl.java,v 1.14 2002/01/29 01:15:18 lehors Exp $
  + * @version $Id: XMLAttributesImpl.java,v 1.15 2002/05/04 05:30:10 andyc Exp $
    */
   public class XMLAttributesImpl
  -    implements XMLAttributes, AttributeList, Attributes {
  +    implements XMLAttributes {
   
       //
       // Data
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org