}
@Override
public JComponent createComponent() {
myPanel = new JPanel(new GridBagLayout());
myComboBox = new ComboBox(new String[] {"only impacting paths", "include all current branches", "include all current branches and tags"});
myPanel.add(new JLabel("Scan mode: "), new GridBagConstraints(0,0,1,1,0,0,GridBagConstraints.WEST,GridBagConstraints.NONE,new Insets(0,0,0,0),0,0));
myPanel.add(myComboBox, new GridBagConstraints(1,0,1,1,1,0,GridBagConstraints.EAST,GridBagConstraints.HORIZONTAL,new Insets(0,0,0,0),0,0));
myPanel.add(new JPanel(), new GridBagConstraints(0,1,2,1,1,1,GridBagConstraints.SOUTH,GridBagConstraints.BOTH,new Insets(0,0,0,0),0,0));
return myPanel;
}