< prev index next >

src/com/sun/org/apache/xerces/internal/impl/XML11DocumentScannerImpl.java

Print this page
rev 2127 : 8048021: Remove @version tag in jaxp repo
Reviewed-by: joehw


  37  * component manager that uses it:
  38  * <ul>
  39  *  <li>http://xml.org/sax/features/namespaces</li>
  40  *  <li>http://xml.org/sax/features/validation</li>
  41  *  <li>http://apache.org/xml/features/nonvalidating/load-external-dtd</li>
  42  *  <li>http://apache.org/xml/features/scanner/notify-char-refs</li>
  43  *  <li>http://apache.org/xml/features/scanner/notify-builtin-refs</li>
  44  *  <li>http://apache.org/xml/properties/internal/symbol-table</li>
  45  *  <li>http://apache.org/xml/properties/internal/error-reporter</li>
  46  *  <li>http://apache.org/xml/properties/internal/entity-manager</li>
  47  *  <li>http://apache.org/xml/properties/internal/dtd-scanner</li>
  48  * </ul>
  49  *
  50  * @xerces.internal
  51  *
  52  * @author Glenn Marcy, IBM
  53  * @author Andy Clark, IBM
  54  * @author Arnaud  Le Hors, IBM
  55  * @author Eric Ye, IBM
  56  *
  57  * @version $Id: XML11DocumentScannerImpl.java,v 1.5 2010/08/04 20:59:09 joehw Exp $
  58  */
  59 public class XML11DocumentScannerImpl
  60     extends XMLDocumentScannerImpl {
  61 
  62 
  63     /** String buffer. */
  64     private final XMLStringBuffer fStringBuffer = new XMLStringBuffer();
  65     private final XMLStringBuffer fStringBuffer2 = new XMLStringBuffer();
  66     private final XMLStringBuffer fStringBuffer3 = new XMLStringBuffer();
  67 
  68     //
  69     // Constructors
  70     //
  71 
  72     /** Default constructor. */
  73     public XML11DocumentScannerImpl() {super();} // <init>()
  74 
  75     //
  76     // overridden methods
  77     //




  37  * component manager that uses it:
  38  * <ul>
  39  *  <li>http://xml.org/sax/features/namespaces</li>
  40  *  <li>http://xml.org/sax/features/validation</li>
  41  *  <li>http://apache.org/xml/features/nonvalidating/load-external-dtd</li>
  42  *  <li>http://apache.org/xml/features/scanner/notify-char-refs</li>
  43  *  <li>http://apache.org/xml/features/scanner/notify-builtin-refs</li>
  44  *  <li>http://apache.org/xml/properties/internal/symbol-table</li>
  45  *  <li>http://apache.org/xml/properties/internal/error-reporter</li>
  46  *  <li>http://apache.org/xml/properties/internal/entity-manager</li>
  47  *  <li>http://apache.org/xml/properties/internal/dtd-scanner</li>
  48  * </ul>
  49  *
  50  * @xerces.internal
  51  *
  52  * @author Glenn Marcy, IBM
  53  * @author Andy Clark, IBM
  54  * @author Arnaud  Le Hors, IBM
  55  * @author Eric Ye, IBM
  56  *

  57  */
  58 public class XML11DocumentScannerImpl
  59     extends XMLDocumentScannerImpl {
  60 
  61 
  62     /** String buffer. */
  63     private final XMLStringBuffer fStringBuffer = new XMLStringBuffer();
  64     private final XMLStringBuffer fStringBuffer2 = new XMLStringBuffer();
  65     private final XMLStringBuffer fStringBuffer3 = new XMLStringBuffer();
  66 
  67     //
  68     // Constructors
  69     //
  70 
  71     /** Default constructor. */
  72     public XML11DocumentScannerImpl() {super();} // <init>()
  73 
  74     //
  75     // overridden methods
  76     //


< prev index next >