use of cbit.vcell.client.bionetgen.BNGOutputPanel in project vcell by virtualcell.
the class DisplayBNGOutput method run.
/**
* Insert the method's description here.
* Creation date: (7/19/2006 2:19:07 PM)
* @param hashTable java.util.Hashtable
* @param clientWorker cbit.vcell.desktop.controls.ClientWorker
*/
public void run(Hashtable<String, Object> hashTable) throws Exception {
BNGOutputPanel bngOutputPanel = (BNGOutputPanel) hashTable.get(BNGWindowManager.BNG_OUTPUT_PANEL);
BNGOutput bngOutput = (BNGOutput) hashTable.get("bngOutput");
if (bngOutput != null) {
bngOutputPanel.changeBNGPanelTab();
bngOutputPanel.setBngOutput(bngOutput);
}
bngOutputPanel.refreshButton(false);
}
Aggregations