@Override
 public void endDocument() throws SAXException {
   super.endDocument();
   Logger.w(TAG, "endDocument()");
   // Do Nothing;
 }
 @Override
 public void startDocument() throws SAXException {
   super.startDocument();
   mContentList = new ArrayList<Item>();
   Logger.w(TAG, "startDocument()");
 }