panel.setBorder(new EtchedBorder());
panel.setLayout(new BorderLayout());
panel.add(new JLabel("ExecutionType:"), BorderLayout.WEST);
JComboBox comboBox = new JComboBox();
if (graph.hasChildren()) {
comboBox.addItem("parallel");
comboBox.addItem("sequential");
} else if (graph.getModel().getExecutionType().equals("task")) {
comboBox.addItem("parallel");
comboBox.addItem("sequential");
comboBox.addItem("task");