Example #1
0
 /** Set the focus to the editor containing {@link AttributeNames#QUERY}, if possible. */
 @Override
 public boolean setFocus() {
   if (editors.containsKey(AttributeNames.QUERY)) {
     editors.get(AttributeNames.QUERY).setFocus();
     return true;
   } else return false;
 }