Revision 1396,
382 bytes
checked in by wojtekp, 11 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package simulator.stats; |
---|
2 | |
---|
3 | import java.util.List; |
---|
4 | import java.util.Map; |
---|
5 | |
---|
6 | import simulator.stats.implementation.MetricsStats; |
---|
7 | |
---|
8 | public interface MetricsCalculator { |
---|
9 | |
---|
10 | public List<MetricsStats> calulateMetrics(); |
---|
11 | |
---|
12 | public void addMetricsData(String resourceTypeName, DCwormsAccumulator resourceEnergyAccumulator); |
---|
13 | |
---|
14 | public Map<String, List<DCwormsAccumulator>> getMetricsData(); |
---|
15 | |
---|
16 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.