- Timestamp:
- 06/26/14 14:18:01 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/schedframe/SimulatedEnvironment.java
r1207 r1396 11 11 12 12 import schedframe.exceptions.ResourceException; 13 import schedframe.resources.ResourceHistory Changes;13 import schedframe.resources.ResourceHistoryItem; 14 14 import schedframe.resources.computing.ComputingResource; 15 15 import schedframe.scheduling.Scheduler; … … 21 21 protected List<Initializable> toInit; 22 22 protected Set<String> compResLayers; 23 protected static List<ResourceHistory Changes> compResHistory = new ArrayList<ResourceHistoryChanges>();23 protected static List<ResourceHistoryItem> compResHistory = new ArrayList<ResourceHistoryItem>(); 24 24 25 25 public SimulatedEnvironment(Scheduler logicalStructure, List<ComputingResource> compResources){ … … 156 156 157 157 public static void traceResource(long timestamp, String resourceName, String operation, String paramter){ 158 ResourceHistory Changes rhc = new ResourceHistoryChanges(timestamp, resourceName, operation, paramter);158 ResourceHistoryItem rhc = new ResourceHistoryItem(timestamp, resourceName, operation, paramter); 159 159 compResHistory.add(rhc); 160 160 } 161 161 162 public static List<ResourceHistory Changes> getCompResHistory() {162 public static List<ResourceHistoryItem> getCompResHistory() { 163 163 return compResHistory; 164 164 }
Note: See TracChangeset
for help on using the changeset viewer.