"Response from command ('" + cmd + "') was:\n" + lastReply);
}
}
+ else
+ {
+ if (Cache.log.isDebugEnabled())
+ {
+ Cache.log.debug("Command executed: " + cmd);
+ }
+ }
return reply;
}
{
return;
}
-
+ if (!found)
+ {
+ // not a valid residue label command, so clear
+ cmd.setLength(0);
+ }
/*
- * unshow the label for the previous residue
+ * prepend with command
+ * to unshow the label for the previous residue
*/
if (lastHighlightCommand != null)
{
- executeCommand(false, null, new StructureCommand("~" + lastHighlightCommand));
+ cmd.insert(0, ";");
+ cmd.insert(0,lastHighlightCommand);
+ cmd.insert(0,"~");
+
}
- if (found)
- {
- executeCommand(false, null, new StructureCommand(command));
+ if (cmd.length()>0) {
+ executeCommand(true, null, new StructureCommand(cmd.toString()));
+ }
+
+ if (found) {
+ this.lastHighlightCommand = command;
}
- this.lastHighlightCommand = command;
}
/**
* executed.
* <p>
* If a reply is wanted, the execution is done synchronously (waits),
- * otherwise it is done in a separate thread (doesn't wait).
+ * otherwise it is done in a separate thread (doesn't wait). WARNING: if you
+ * are sending commands that need to execute before later calls to
+ * executeCommand (e.g. mouseovers, which clean up after previous ones) then
+ * set getReply true to ensure that commands are not executed out of order.
*
* @param getReply
* @param msg