This is actually a rib shape style:
style = graph.getStylesheet().getDefaultEdgeStyle(); style[mxConstants.STYLE_CURVED] = '1';
Sets the default value for all edges.
Style styles are actually positioning edge control points between source and target. The curve does not route (this is the positioning of the points), it is just a stylization through these points, so this is not the edge style.
David source share