From 1ff0da7b73c20fd9f292644e4fc99d04765300a7 Mon Sep 17 00:00:00 2001 From: shainachen Date: Wed, 11 Jan 2017 20:13:00 -0800 Subject: [PATCH] Add javadoc comments for Shooter skeleton methods --- .../team3501/robot/subsystems/Shooter.java | 32 +++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) 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() { } -- 2.30.2