Class CountersTable

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable, java.util.Map

    public class CountersTable
    extends java.util.Hashtable
    This is a table of counters, keyed by ElemNumber objects, each of which has a list of Counter objects. This really isn't a true table, it is more like a list of lists (there must be a technical term for that...).
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      CountersTable()
      Construct a CountersTable.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int countNode​(XPathContext support, ElemNumber numberElem, int node)
      Count forward until the given node is found, or until we have looked to the given amount.
      • Methods inherited from class java.util.Hashtable

        clear, clone, compute, computeIfAbsent, computeIfPresent, contains, containsKey, containsValue, elements, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keys, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, toString, values
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CountersTable

        public CountersTable()
        Construct a CountersTable.
    • Method Detail

      • countNode

        public int countNode​(XPathContext support,
                             ElemNumber numberElem,
                             int node)
                      throws javax.xml.transform.TransformerException
        Count forward until the given node is found, or until we have looked to the given amount.
        Parameters:
        support - The XPath context to use
        numberElem - The given xsl:number element.
        node - The node to count.
        Returns:
        The node count, or 0 if not found.
        Throws:
        javax.xml.transform.TransformerException