You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by pb...@apache.org on 2004/01/15 04:16:25 UTC

cvs commit: xml-fop/src/java/org/apache/fop/pool XmlEventPool.java

pbwest      2004/01/14 19:16:25

  Modified:    src/java/org/apache/fop/xml Tag: FOP_0-20-0_Alt-Design
                        Namespaces.java
  Added:       src/java/org/apache/fop/pool Tag: FOP_0-20-0_Alt-Design
                        XmlEventPool.java
  Log:
  XMLEventPool renamed to XmlEventPool
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.2.4   +10 -10    xml-fop/src/java/org/apache/fop/xml/Attic/Namespaces.java
  
  Index: Namespaces.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/xml/Attic/Namespaces.java,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- Namespaces.java	15 Jan 2004 03:10:58 -0000	1.1.2.3
  +++ Namespaces.java	15 Jan 2004 03:16:25 -0000	1.1.2.4
  @@ -58,7 +58,7 @@
    * One instance of <i>Namespaces</i> is maintained across all documents
    * that may be processed in a single invocation of <tt>XMLSerialhandler</tt>.
    * A reference to that instance is kept with every instance of <tt>XmlEvent</tt>.
  - * An <code>XMLEventPool</code> pool of event objects is maintained for every
  + * An <code>XmlEventPool</code> pool of event objects is maintained for every
    * namesapce encountered in parsing. The pool for the
    * http://www.w3.org/1999/XSL/Format (XSL_FO) namespace is created immediately;
    * other pools are created only as elements from a particular namespace are
  @@ -120,12 +120,12 @@
           { DefAttrNSpace, XSLNamespace, FOXNamespace, SVGNamespace };
   
       /**
  -     * An array of <code>XMLEventPool</code>s. This ArrayList is indexed by
  +     * An array of <code>XmlEventPool</code>s. This ArrayList is indexed by
        * the namespace index used in this <code>Namespaces</code> object.
        * This allows for the maintenance of individual event pools for each
        * namespace active in the current document.
        */
  -    private XMLEventPool[] pools = new XMLEventPool[LAST_NS_INDEX + 1];
  +    private XmlEventPool[] pools = new XmlEventPool[LAST_NS_INDEX + 1];
       
       /**
        * The pool for <code>UriLocalName</code> objects.
  @@ -182,13 +182,13 @@
               nsSequences[i] = 0;
           }
           pools[DefAttrNSIndex] =
  -            new XMLEventPool(INITIAL_DEF_ATTR_NS_POOL_SIZE);
  +            new XmlEventPool(INITIAL_DEF_ATTR_NS_POOL_SIZE);
           pools[XSLNSpaceIndex] =
  -            new XMLEventPool(INITIAL_XSL_NS_POOL_SIZE);
  +            new XmlEventPool(INITIAL_XSL_NS_POOL_SIZE);
           pools[FOXNSpaceIndex] =
  -            new XMLEventPool(INITIAL_FOX_NS_POOL_SIZE);
  +            new XmlEventPool(INITIAL_FOX_NS_POOL_SIZE);
           pools[SVGNSpaceIndex] =
  -            new XMLEventPool(INITIAL_SVG_NS_POOL_SIZE);
  +            new XmlEventPool(INITIAL_SVG_NS_POOL_SIZE);
           uriLocalNamePool = new UriLocalNamePool(BUFFER_SIZE);
       }
       
  
  
  
  No                   revision
  No                   revision
  1.1.2.1   +91 -0     xml-fop/src/java/org/apache/fop/pool/Attic/XmlEventPool.java
  
  
  
  

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