BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
controllers/PVCiPressureGaugeFactory.java
1 package kernel.controllers;
2 
4 import kernel.Kernel;
5 
6 import java.io.IOException;
7 
11 public interface PVCiPressureGaugeFactory {
12 
16  Kernel getKernel();
17 
21  void setKernel(Kernel kernel);
22 
26  Integer getAddress();
27 
31  void setAddress(Integer address);
32 
36  String getPortName();
37 
41  void setPortName(String portName);
42 
47  PressureGauge getPressureGauge() throws IOException ;
48 
52  void makePressureGauge() throws IOException ;
53 }
Git Repo