public void startElement(String uri, String localName, String qName, Attributes attributes)
throws SAXException {
if (TAG_RELEASE_GROUP_LIST.equals(qName)) {
totalAlbums = toInt(attributes.getValue(ATTR_COUNT));
} else if (TAG_RELEASE_GROUP.equals(qName)) {
albums.add(currentAlbum = new MBAlbum());
currentAlbum.setMbid(attributes.getValue(ATTR_ID));
}
characterData = new StringBuilder();
}