public class TextAnnotationXMLConverter extends BaseBpmnXMLConverter {
protected Map<String, BaseChildElementParser> childParserMap = new HashMap<String, BaseChildElementParser>();
public TextAnnotationXMLConverter() {
TextAnnotationTextParser annotationTextParser = new TextAnnotationTextParser();
childParserMap.put(annotationTextParser.getElementName(), annotationTextParser);
}