You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by je...@locus.apache.org on 2000/11/22 02:35:23 UTC

cvs commit: xml-xerces/java/samples/sax DTDReader.java Makefile

jeffreyr    00/11/21 17:35:23

  Modified:    java/samples/sax Tag: xerces_j_2 Makefile
  Added:       java/samples/sax Tag: xerces_j_2 DTDReader.java
  Log:
  added DeclHandler examples which shows bug in X2 with handling AttributeDecl in SAX
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.5.4.2   +1 -0      xml-xerces/java/samples/sax/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/sax/Makefile,v
  retrieving revision 1.5.4.1
  retrieving revision 1.5.4.2
  diff -u -r1.5.4.1 -r1.5.4.2
  --- Makefile	2000/11/03 21:15:20	1.5.4.1
  +++ Makefile	2000/11/22 01:35:22	1.5.4.2
  @@ -1,6 +1,7 @@
   # Makefile for directory ./sax
   
   TARGETS=\
  +	DTDReader.class\
   	DelayedInput.class\
   	SAXCount.class\
   	SAX2Count.class\
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +1 -1      xml-xerces/java/samples/sax/DTDReader.java
  
  Index: DTDReader.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/sax/DTDReader.java,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  --- DTDReader.java	2000/11/22 01:07:33	1.1
  +++ DTDReader.java	2000/11/22 01:35:22	1.1.2.1
  @@ -71,7 +71,7 @@
    *      through the usage of the DeclHandler interface.
    * 
    * @author Jeffrey Rodriguez
  - * @version $Id: DTDReader.java,v 1.1 2000/11/22 01:07:33 jeffreyr Exp $
  + * @version $Id: DTDReader.java,v 1.1.2.1 2000/11/22 01:35:22 jeffreyr Exp $
    * @see       org.xml.sax.ext.DeclHandler
    */
   public class DTDReader implements DeclHandler {