From: Shaina Chen Date: Fri, 12 Feb 2016 03:29:57 +0000 (-0800) Subject: add javadoc style comment for class X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=9dd13c385912e5e5710a0c55201e5db6f27c4b92 add javadoc style comment for class --- 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;