@Override
public void endElement(String uri, String localName, String qName)
throws SAXException {
String chars = characterData.toString();
if (TAG_NAME.equals(qName)) {
artistPlayCount = new ArtistPlayCount(chars);
} else if (TAG_PLAY_COUNT.equals(qName)) {
artistPlayCount.setPlayCount(toInt(chars));
artistPlayCounts.add(artistPlayCount);
}
}