/* (non-Javadoc)
* @see org.springframework.ide.eclipse.webflow.ui.graph.parts.ChildrenStatePart#applyChildrenResults(org.eclipse.draw2d.graph.CompoundDirectedGraph, java.util.Map)
*/
protected void applyChildrenResults(CompoundDirectedGraph graph, Map map) {
CompoundStateFigure figure = (CompoundStateFigure) getFigure();
int headerY = figure.getHeader().getBounds().getBottom().y + 8;
for (int i = 0; i < getChildren().size(); i++) {
AbstractStatePart part = (AbstractStatePart) getChildren().get(i);
part.applyGraphResults(graph, map);
Point p = part.getFigure().getBounds().getLocation();
p.y = headerY + (i * 23);