Package org.activiti.bpmn.converter.child

Examples of org.activiti.bpmn.converter.child.TextAnnotationTextParser


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);
  }
View Full Code Here

TOP

Related Classes of org.activiti.bpmn.converter.child.TextAnnotationTextParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.