private void findNext() {
if (this.foundExpressions == null) {
return;
}
Selection selection = this.foundExpressions.next();
ISearchable seachable = selection.getSearchable(); // The ControlPanel
int start = selection.getStart();
int end = selection.getEnd();
String idControlPanel = selection.toString();
this.selectControlPanel(idControlPanel);
JTextComponent textComponent = seachable.getTextComponent();
// textComponent.setEditable(true);
// textComponent.requestFocus();
textComponent.setCaretColor(Color.BLUE);
textComponent.setSelectionStart(start);
textComponent.setCaretPosition(start);