if ( query.length() == 0 )
return;
try {
DefaultMutableTreeNode node = (DefaultMutableTreeNode)path.getLastPathComponent();
AdminNode info = (AdminNode)node.getUserObject();
if ( info instanceof HasCollection && ((HasCollection)info).getCollection() != null ) {
setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
CollectionClient col = ((HasCollection)info).getCollection();
Stopwatch sw = new Stopwatch("Query Results", true);