BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
VoltageDataPoint.java
1 package kernel.models.variables;
2 
4 import java.util.Date;
5 
9 public class VoltageDataPoint implements Voltage {
10 
14  private final Date date;
15 
19  private final Double value;
20 
26  public VoltageDataPoint(Date date, Double value){
27  this.date = date;
28  this.value = value;
29  }
30 
35  @Override
36  public Date getDate(){
37  return this.date;
38  }
39 
44  @Override
45  public Double getValue(){
46  return this.value;
47  }
48 }
Git Repo