Add javadoc comments to command class constructors
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / shooter / RunIndexWheelContinuous.java
index 97e8d22f2cc5ce633c59d70f5a430e2ea2d0919d..6f306f85e97bea7f37474f4770753b2a35affade 100644 (file)
@@ -9,13 +9,17 @@ import edu.wpi.first.wpilibj.command.Command;
  * pre-condition: This command must be run by a button in OI with
  * button.whileHeld(...).
  *
- * @param motorVal
- *          value range is from -1 to 1
  * @author Shaina
  */
 public class RunIndexWheelContinuous extends Command {
   private double motorVal;
 
+  /**
+   * See JavaDoc comment in class for details
+   *
+   * @param motorVal
+   *          value range from -1 to 1
+   */
   public RunIndexWheelContinuous(double motorVal) {
     this.motorVal = motorVal;
   }