Ignore:
Timestamp:
09/06/11 13:17:11 (14 years ago)
Author:
mcichenski
Message:
 
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  
    4848                                        properties.name = conf["name"]; 
    4949                                        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                                        */ 
    5376                                        ExperimentEditor.experiments.addItem(properties); 
    5477                                } 
Note: See TracChangeset for help on using the changeset viewer.