From 9dd13c385912e5e5710a0c55201e5db6f27c4b92 Mon Sep 17 00:00:00 2001 From: Shaina Chen Date: Thu, 11 Feb 2016 19:29:57 -0800 Subject: [PATCH] add javadoc style comment for class --- .../team3501/robot/commands/RaiseDefenseArmContinuous.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseArmContinuous.java b/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseArmContinuous.java index 8667f68d..9749ac3c 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseArmContinuous.java +++ b/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseArmContinuous.java @@ -4,6 +4,12 @@ import org.usfirst.frc.team3501.robot.Robot; import edu.wpi.first.wpilibj.command.Command; +/*** + * This command is intended to be run from OI using button.whileHeld(...). + * It raises the defenseArm continually while the button is being held down. + * + * @author shaina + */ public class RaiseDefenseArmContinuous extends Command { private double speed; -- 2.30.2