BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
Public Member Functions | List of all members
kernel.models.variables.PressureDataPoint Class Reference
Inheritance diagram for kernel.models.variables.PressureDataPoint:
Inheritance graph
[legend]
Collaboration diagram for kernel.models.variables.PressureDataPoint:
Collaboration graph
[legend]

Public Member Functions

 PressureDataPoint (Date date, Float value)
 
Float getValue ()
 
Date getDate ()
 
- Public Member Functions inherited from kernel.views.variables.Variable< Float >
Date getDate ()
 
getValue ()
 

Detailed Description

Contains a standalone implementation of the Pressure variable

Definition at line 10 of file PressureDataPoint.java.

Constructor & Destructor Documentation

kernel.models.variables.PressureDataPoint.PressureDataPoint ( Date  date,
Float  value 
)
Parameters
dateThe date at which the pressure was measured
valueThe value of the pressure

Definition at line 25 of file PressureDataPoint.java.

25  {
26  this.date = date;
27  this.value = value;
28  }

Member Function Documentation

Date kernel.models.variables.PressureDataPoint.getDate ( )
Returns
the date at which the pressure was measured

Definition at line 42 of file PressureDataPoint.java.

42  {
43  return this.date;
44  }
Float kernel.models.variables.PressureDataPoint.getValue ( )
Returns
The value of the pressure

Definition at line 34 of file PressureDataPoint.java.

34  {
35  return this.value;
36  }

The documentation for this class was generated from the following file:
Git Repo