- Timestamp:
- 10/10/12 12:12:06 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/simulator/stats/implementation/ResourceUsageStats.java
r477 r495 15 15 public class ResourceUsageStats implements StatsInterface { 16 16 17 protected Map<Long, Integer> usage;17 protected Map<Long, Double> usage; 18 18 protected String resourceName; 19 19 protected String usageType; … … 31 31 this.resourceType = resourceType; 32 32 this.usageType = usageType; 33 this.usage = new TreeMap<Long, Integer>();33 this.usage = new TreeMap<Long, Double>(); 34 34 this.meanUsage = 0; 35 35 } … … 51 51 } 52 52 53 public Map<Long, Integer> getUsage() {53 public Map<Long, Double> getUsage() { 54 54 return this.usage; 55 55 }
Note: See TracChangeset
for help on using the changeset viewer.