Interface BpmnParseHandler

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Collection<java.lang.Class<? extends org.activiti.bpmn.model.BaseElement>> getHandledTypes()
      The types for which this handler must be called during process parsing.
      void parse​(BpmnParse bpmnParse, org.activiti.bpmn.model.BaseElement element)
      The actual delegation method.
    • Method Detail

      • getHandledTypes

        java.util.Collection<java.lang.Class<? extends org.activiti.bpmn.model.BaseElement>> getHandledTypes()
        The types for which this handler must be called during process parsing.
      • parse

        void parse​(BpmnParse bpmnParse,
                   org.activiti.bpmn.model.BaseElement element)
        The actual delegation method. The parser will calls this method on a match with the getHandledTypes() return value.
        Parameters:
        bpmnParse - The BpmnParse instance that acts as container for all things produced during the parsing.