protected void setSelected(Graph2D graph, boolean state, final Project project, final AnActionEvent e) {
final GraphBuilder builder = getGraphBuilder(e);
if (builder != null) {
final GraphPresentationModel graphPresentationModel = builder.getGraphPresentationModel();
if (graphPresentationModel instanceof BasicGraphPresentationModel) {
((BasicGraphPresentationModel)graphPresentationModel).setShowEdgeLabels(state);
builder.updateGraph();
}
}