Changeset 60 for gssim_ui/branches/vine/gssimstudio/src/web/ui/flex
- Timestamp:
- 09/06/11 13:17:11 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/app/gssim/gssimstudio/editor/views/ArchiveViewer.mxml
r59 r60 48 48 properties.name = conf["name"]; 49 49 properties.setRuns(conf["numberofsimulations"]); 50 properties.setGlobal(conf["gridschedulingpluginname"]); 51 properties.setLocal(conf["localallocpolicypluginname"]); 52 properties.setExec(conf["exectimeestimationpluginname"]); 50 for each (var obj : Object in parentApplication.gsSimStudioModel.globalPluginList.toArray()) 51 { 52 if (obj.data == conf["gridschedulingpluginname"]) 53 { 54 properties.setGlobal(obj); 55 break; 56 } 57 } 58 for each (var obj : Object in parentApplication.gsSimStudioModel.localPluginList.toArray()) 59 { 60 if (obj.data == conf["localallocpolicypluginname"]) 61 { 62 properties.setLocal(obj); 63 break; 64 } 65 } 66 /* 67 for each (var obj : Object in executionTimeEstimationPlugin.dataProvider) 68 { 69 if (obj.data == conf["exectimeestimationpluginname"]) 70 { 71 properties.setExec(obj); 72 break; 73 } 74 } 75 */ 53 76 ExperimentEditor.experiments.addItem(properties); 54 77 }
Note: See TracChangeset
for help on using the changeset viewer.