ConstantValueFinder.java from Tea Stats at Krugle
Show ConstantValueFinder.java syntax highlighted
package net.time4tea.webstats.analyser.extractor.value;
import net.time4tea.webstats.record.Record;
/**
* Originally richja 07-May-2007
*/
public class ConstantValueFinder implements ValueFinder {
public Number getValue(Record record) {
return 1;
}
}
See more files for this project here