Ignore:
Timestamp:
06/26/14 14:18:01 (11 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/branches/coolemall/src/schedframe/SimulatedEnvironment.java

    r1207 r1396  
    1111 
    1212import schedframe.exceptions.ResourceException; 
    13 import schedframe.resources.ResourceHistoryChanges; 
     13import schedframe.resources.ResourceHistoryItem; 
    1414import schedframe.resources.computing.ComputingResource; 
    1515import schedframe.scheduling.Scheduler; 
     
    2121        protected List<Initializable> toInit; 
    2222        protected Set<String> compResLayers; 
    23         protected static List<ResourceHistoryChanges> compResHistory = new ArrayList<ResourceHistoryChanges>(); 
     23        protected static List<ResourceHistoryItem> compResHistory = new ArrayList<ResourceHistoryItem>(); 
    2424         
    2525        public SimulatedEnvironment(Scheduler logicalStructure, List<ComputingResource> compResources){ 
     
    156156 
    157157        public static void traceResource(long timestamp, String resourceName, String operation, String paramter){ 
    158                 ResourceHistoryChanges rhc = new ResourceHistoryChanges(timestamp, resourceName, operation, paramter); 
     158                ResourceHistoryItem rhc = new ResourceHistoryItem(timestamp, resourceName, operation, paramter); 
    159159                compResHistory.add(rhc); 
    160160        } 
    161161 
    162         public static List<ResourceHistoryChanges> getCompResHistory() { 
     162        public static List<ResourceHistoryItem> getCompResHistory() { 
    163163                return compResHistory; 
    164164        } 
Note: See TracChangeset for help on using the changeset viewer.