Added "Add your docs here" flags to all needed methods

- All methods that need javadoc have been marked with

/**
 * Add your docs here.
 */
This commit is contained in:
Keenan D. Buckley
2020-01-05 20:27:01 -07:00
parent f466abead2
commit 7e57cf8f2d
6 changed files with 39 additions and 1 deletions
@@ -1,5 +1,8 @@
package frc4388.utility.controller;
/**
* Add your docs here.
*/
public interface IHandController {
public double getLeftXAxis();
@@ -52,10 +52,16 @@ public class XboxController implements IHandController
private Joystick m_stick;
/**
* Add your docs here.
*/
public XboxController(int portNumber){
m_stick = new Joystick(portNumber);
}
/**
* Add your docs here.
*/
public Joystick getJoyStick() {
return m_stick;
}