示例#1
0
 /**
  * helper parsing function for the NODE tag
  *
  * @param atts
  */
 private void parseEntry(Attributes atts) {
   String sourceFile = atts.getValue("sourceFile");
   String mapName = atts.getValue("mapName");
   String buttonId = atts.getValue("buttonId");
   int saveId = Integer.parseInt(atts.getValue("saveID"));
   mParsedDataSet.appendNewColumn(mapName, sourceFile, buttonId, saveId);
 }
示例#2
0
 /**
  * helper parsing function for the MAP tag
  *
  * @param atts
  */
 private void parseRow(Attributes atts) {
   mParsedDataSet.appendNewRow();
 }