Add javadoc comments to command class constructors
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / shooter / RunIndexWheel.java
index 6804c255b781c67c0609f9615a9eb6e921f61274..58a59fbdd8e9669a534703caa1d59b9313ff5b8b 100644 (file)
@@ -8,16 +8,20 @@ import edu.wpi.first.wpilibj.command.Command;
  * pre-condition: fly wheel is running at full speed to prepare for shooting
  * fuel
  *
- * @param motorVal
- *          value range is from -1 to 1
- * @param time
- *          in seconds
  * @author Shaina
  */
 public class RunIndexWheel extends Command {
   private double time;
   private double motorVal;
 
+  /**
+   * See JavaDoc comment in class for details
+   *
+   * @param motorVal
+   *          value range from -1 to 1
+   * @param time
+   *          in seconds, amount of time to run index wheel motor
+   */
   public RunIndexWheel(double motorVal, double time) {
     this.motorVal = motorVal;
     this.time = time;