Source code: marf/Stats/StatsCollector.java
1 package marf.Stats;
2
3 import marf.util.NotImplementedException;
4
5 /**
6 * TODO: Implement.
7 *
8 * Ideally we'd want to measure.
9 * How long it takes for a particular module to do the thing.
10 * How long it takes to run whole pipeline.
11 * How many features...
12 * Amount of noise and silence removed...
13 * ...
14 *
15 * $Id: StatsCollector.java,v 1.7 2005/07/30 20:05:45 mokhov Exp $
16 *
17 * @author Serguei Mokhov
18 * @version $Revision: 1.7 $
19 * @since 0.0.1
20 */
21 public class StatsCollector
22 {
23 /**
24 * @throws NotImplementedException
25 */
26 public StatsCollector()
27 {
28 throw new NotImplementedException("StatsCollector.StatsCollector()");
29 }
30
31 /**
32 * Returns source code revision information.
33 * @return revision string
34 * @since 0.3.0.2
35 */
36 public static String getMARFSourceCodeRevision()
37 {
38 return "$Revision: 1.7 $";
39 }
40 }
41
42 // EOF