1 package org.lsst.ccs.plugin.jas3.trending.timeselection;
2
3 /**
4 *
5 * @author
6 * @version
7 */
8 public class TimeSelectionEvaluator {
9
10
11 TimeSelectionEvaluator() {
12 }
13
14
15 public double getDoubleProperty(int i) {
16 return 1;
17 }
18 public double getDoubleProperty(String name) {
19 return 1;
20 }
21 public double getDoubleProperty(double l) {
22 return l;
23 }
24 }