From: shainachen Date: Thu, 12 Jan 2017 04:13:00 +0000 (-0800) Subject: Add javadoc comments for Shooter skeleton methods X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=commitdiff_plain;h=1ff0da7b73c20fd9f292644e4fc99d04765300a7 Add javadoc comments for Shooter skeleton methods --- diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java b/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java index 934bdb0..2181b56 100644 --- a/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java @@ -5,26 +5,54 @@ public class Shooter { } + /** + * Stops fly wheel + */ public void stopFlywheel() { } - public void runFlywheel(double speed, double seconds) { + /** + * Runs the fly wheel at a given speed in () for input time in seconds + * + * @param speed + * in () + * @param time + * in seconds + */ + public void runFlywheel(double speed, double time) { } + /** + * Stops index wheel + */ public void stopIndexWheel() { } - public void runIndexWheel(double speed, double seconds) { + /** + * Runs index wheel at a given speed in () for input time in seconds + * + * @param speed + * in () + * @param time + * in seconds + */ + public void runIndexWheel(double speed, double time) { } + /** + * Runs fly wheel continuously until ________ + */ public void runFlywheelContinuous() { } + /** + * Runs index wheel continuously until ________ + */ public void runIndexWheelContinuous() { }