// in fact 'listinfo' (undocumented) works in ChimeraX
String command = (isChimeraX
- ? "view" /*"info selection level residue" */
+ ? "wait 1; view" /*"info selection level residue" */
: "list selection level residue");
List<String> chimeraReply = sendChimeraCommand(command, true);
if (chimeraReply != null)
* @param msg
* @return handle
*/
- long startProgressBar(String progressMsg);
+ long startProgressBar(String msg);
- void stopProgressBar(Object object, long handle);
+ /**
+ * Ends the progress bar with the specified handle, leaving a message (if not
+ * null) on the status bar
+ *
+ * @param msg
+ * @param handle
+ */
+ void stopProgressBar(String msg, long handle);
}
return tm;
}
- /**
- * End the progress bar with the specified handle, leaving a message (if not
- * null) on the status bar
- *
- * @param msg
- * @param handle
- */
+ @Override
public void stopProgressBar(String msg, long handle)
{
if (progressBar != null)
}
}
- @Override
- public void stopProgressBar(Object object, long handle)
- {
- }
-
protected IProgressIndicator getProgressIndicator()
{
return progressBar;