authId= Integer.valueOf(xpp.getAttributeValue("", "authorId")).intValue();
comment= null;
} else if (tnm.equals("text")) {
// read in text element
lastTag.push(tnm);
Text t= (Text) Text.parseOOXML(xpp, lastTag, bk);
// don't reset state vars as can there can be more
comment= t.getCommentWithFormatting();
}
} else if(eventType == XmlPullParser.END_TAG) {
}
eventType = xpp.next();
}