cancel
Showing results for 
Search instead for 
Did you mean: 

Why ProcessDiagramGenerator does not draw gateway name?

dryabkov
Champ in-the-making
Champ in-the-making
Why ProcessDiagramGenerator does not draw gateways and transitions names?

Is it planned?
4 REPLIES 4

jbarrez
Star Contributor
Star Contributor
It should draw the supported gateways.

Names on sequence flow are not planned at this moment.

dryabkov
Champ in-the-making
Champ in-the-making
Oh…

    // exclusive gateway
    activityDrawInstructions.put("exclusiveGateway", new ActivityDrawInstruction() {
      public void draw(ProcessDiagramCanvas processDiagramCreator, ActivityImpl activityImpl) {
        processDiagramCreator.drawExclusiveGateway(activityImpl.getX(), activityImpl.getY(),
                activityImpl.getWidth(), activityImpl.getHeight());
      }
    });

It can't draw name

jbarrez
Star Contributor
Star Contributor
No, at this point the diagram generator doesnt produce the names of nodes yet. But I'm sure this will be tackled in the future.

dryabkov
Champ in-the-making
Champ in-the-making