protected void selectSomething() {
int sel = choices.getSelectedIndex();
if ( sel != -1 ) {
Command cmd = cmds.get( choices.getValue( sel ) );
if ( cmd != null ) {
cmd.execute();
ruleModeller.refreshWidget();
//new Pattern was added, we need to re-verify the rule
ruleModeller.verifyRule( null,
true );