use of cbit.vcell.client.desktop.biomodel.ApplicationComponents in project vcell by virtualcell.
the class BioModelWindowManager method haveSimulationWindow.
/**
* Insert the method's description here.
* Creation date: (6/11/2004 7:57:44 AM)
* @return cbit.vcell.document.VCDocument
*/
SimulationWindow haveSimulationWindow(VCSimulationIdentifier vcSimulationIdentifier) {
Enumeration<ApplicationComponents> en = getApplicationsHash().elements();
while (en.hasMoreElements()) {
ApplicationComponents appComponents = en.nextElement();
SimulationWindow window = appComponents.haveSimulationWindow(vcSimulationIdentifier);
if (window != null) {
return window;
}
}
return null;
}
Aggregations