View Javadoc

1   /*
2   
3       stax  Stack API for XML.
4       Copyright (c) 2001-2006 held jointly by the individual authors.
5   
6       This library is free software; you can redistribute it and/or modify it
7       under the terms of the GNU Lesser General Public License as published
8       by the Free Software Foundation; either version 2.1 of the License, or (at
9       your option) any later version.
10  
11      This library is distributed in the hope that it will be useful, but WITHOUT
12      ANY WARRANTY; with out even the implied warranty of MERCHANTABILITY or
13      FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14      License for more details.
15  
16      You should have received a copy of the GNU Lesser General Public License
17      along with this library;  if not, write to the Free Software Foundation,
18      Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA.
19  
20      > http://www.gnu.org/copyleft/lesser.html
21      > http://www.opensource.org/licenses/lgpl-license.php
22  
23  */
24  package net.sf.stax;
25  
26  import org.xml.sax.Attributes;
27  import org.xml.sax.SAXException;
28  import org.xml.sax.SAXParseException;
29  
30  /***
31   * StAX handler for any element which just contains a string
32   * representation of an integer.  The integer value, returned by
33   * the <code>endTree(StAXContext)</code> method, is available
34   * to a parent handler via its <code>endElement(String, String,
35   * String, Object, StAXContext)</code> method.
36   *
37   * <p>Ex.
38   * <pre>
39   * class MyHandler
40   *     extends StAXContentHandlerBase
41   * {
42   *     private Integer intValue;
43   *     private IntElementHandler intHandler = new IntElementHandler();
44   *
45   *     public void startElement(..., StAXDelegationContext dctx)
46   *     {
47   *         //...
48   *         dctx.delegate(intHandler);
49   *     }
50   *
51   *     public void endElement(..., Object result, ...)
52   *     {
53   *         this.intValue = (Integer) result;
54   *     }
55   * }
56   * </pre>
57   * </p>
58   * @see StAXContentHandlers#getIntElementHandler
59   *
60   * @author  Matthew Pocock
61   * @author  Michael Heuer
62   * @version $Revision: 1.7 $ $Date: 2006/01/02 20:37:34 $
63   */
64  public final class IntElementHandler
65      extends StAXContentHandlerBase
66  {
67      /*** Nesting level. */
68      private int level = 0;
69  
70      /*** Buffer to hold character data. */
71      private StringBuffer data = new StringBuffer();
72  
73  
74      /*** @see StAXContentHandler */
75      public void startElement(final String nsURI,
76                               final String localName,
77                               final String qName,
78                               final Attributes attrs,
79                               final StAXDelegationContext dctx)
80          throws SAXException
81      {
82          level++;
83          if (level > 1)
84          {
85              throw new SAXParseException("found child element when expecting character data",
86                                          dctx.getLocator());
87          }
88          data.delete(0, data.length());
89      }
90  
91      /*** @see StAXContentHandler */
92      public void endElement(final String nsURI,
93                             final String localName,
94                             final String qName,
95                             final Object result,
96                             final StAXContext ctx)
97          throws SAXException
98      {
99          level--;
100     }
101 
102     /*** @see StAXContentHandler */
103     public void characters(final char[] ch,
104                            final int start,
105                            final int length,
106                            final StAXContext ctx)
107         throws SAXException
108     {
109         data.append(ch, start, length);
110     }
111 
112     /*** @see StAXContentHandler */
113     public Object endTree(final StAXContext ctx)
114         throws SAXException
115     {
116         try
117         {
118             return Integer.valueOf(data.substring(0));
119         }
120         catch (NumberFormatException nfe)
121         {
122             throw new SAXParseException(nfe.getMessage(), ctx.getLocator(), nfe);
123         }
124     }
125 }