Edit JavaDoc comments in shooter commands
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / shooter / StopFlyWheel.java
index 68c6cf0ce4a3e1ce17563b5969ee592cdb73f010..ac7ea5cb49112496d93b550b870069fda89d6c0a 100644 (file)
@@ -2,37 +2,43 @@ package org.usfirst.frc.team3501.robot.commands.shooter;
 
 import edu.wpi.first.wpilibj.command.Command;
 
+/**
+ * This command stops the fly wheel. Do not call unless the trigger button has
+ * been released.
+ *
+ * 
+ * @author Shaina
+ */
 public class StopFlyWheel extends Command {
-
-       /**
-        * Stops fly wheel
-        */
-
-       // Called just before this Command runs the first time
-       @Override
-       protected void initialize() {
-       }
-
-       // Called repeatedly when this Command is scheduled to run
-       @Override
-       protected void execute() {
-       }
-
-       // Called once after isFinished returns true
-       @Override
-       protected void end() {
-       }
-
-       // Called when another command which requires one or more of the same
-       // subsystems is scheduled to run
-       @Override
-       protected void interrupted() {
-       }
-
-       @Override
-       protected boolean isFinished() {
-               // TODO Auto-generated method stub
-               return false;
-       }
+  public StopFlyWheel() {
+
+  }
+
+  // Called just before this Command runs the first time
+  @Override
+  protected void initialize() {
+  }
+
+  // Called repeatedly when this Command is scheduled to run
+  @Override
+  protected void execute() {
+  }
+
+  // Called once after isFinished returns true
+  @Override
+  protected void end() {
+  }
+
+  // Called when another command which requires one or more of the same
+  // subsystems is scheduled to run
+  @Override
+  protected void interrupted() {
+  }
+
+  @Override
+  protected boolean isFinished() {
+    // TODO Auto-generated method stub
+    return false;
+  }
 
 }