Ignore:
Timestamp:
10/10/12 12:12:06 (13 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/trunk/src/simulator/stats/implementation/ResourceUsageStats.java

    r477 r495  
    1515public class ResourceUsageStats implements StatsInterface { 
    1616 
    17         protected Map<Long, Integer> usage; 
     17        protected Map<Long, Double> usage; 
    1818        protected String resourceName; 
    1919        protected String usageType; 
     
    3131                this.resourceType = resourceType; 
    3232                this.usageType = usageType; 
    33                 this.usage = new TreeMap<Long, Integer>(); 
     33                this.usage = new TreeMap<Long, Double>(); 
    3434                this.meanUsage = 0; 
    3535        } 
     
    5151        }        
    5252 
    53         public Map<Long, Integer> getUsage() { 
     53        public Map<Long, Double> getUsage() { 
    5454                return this.usage; 
    5555        } 
Note: See TracChangeset for help on using the changeset viewer.