BowlerKernel
VirtualGenericPidDeviceConnection.java
Go to the documentation of this file.
1 package com.neuronrobotics.sdk.pid;
2 
3 import java.io.IOException;
4 
5 import com.neuronrobotics.sdk.common.BowlerAbstractConnection;
6 
7 // TODO: Auto-generated Javadoc
12 
13  /* (non-Javadoc)
14  * @see com.neuronrobotics.sdk.common.BowlerAbstractConnection#connect()
15  */
16  @Override
17  public boolean connect() {
18  // TODO Auto-generated method stub
19  return true;
20  }
21 
22 // @Override
23 // public boolean reconnect() throws IOException {
24 // // TODO Auto-generated method stub
25 // return false;
26 // }
27 
28  /* (non-Javadoc)
29  * @see com.neuronrobotics.sdk.common.BowlerAbstractConnection#waitingForConnection()
30  */
31 @Override
32  public boolean waitingForConnection() {
33  // TODO Auto-generated method stub
34  return false;
35  }
36 
37 }