summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/scheduler
diff options
context:
space:
mode:
authorEdmond Poon <sagaciouszzzz@gmail.com>2013-04-02 00:11:22 -0400
committerEdmond Poon <sagaciouszzzz@gmail.com>2013-04-02 00:11:22 -0400
commit02d11a0525c72aa4ccfbc75d54a531c998734629 (patch)
tree5ebdf755d03de45a4b09cefeb3605c056ba9d40c /src/main/java/org/bukkit/scheduler
parent5be5a3d1342c986833c390bcf64306dc75022245 (diff)
downloadbukkit-02d11a0525c72aa4ccfbc75d54a531c998734629.tar
bukkit-02d11a0525c72aa4ccfbc75d54a531c998734629.tar.gz
bukkit-02d11a0525c72aa4ccfbc75d54a531c998734629.tar.lz
bukkit-02d11a0525c72aa4ccfbc75d54a531c998734629.tar.xz
bukkit-02d11a0525c72aa4ccfbc75d54a531c998734629.zip
Pulling all pending Bukkit-JavaDoc changes
Diffstat (limited to 'src/main/java/org/bukkit/scheduler')
-rw-r--r--src/main/java/org/bukkit/scheduler/BukkitScheduler.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/org/bukkit/scheduler/BukkitScheduler.java b/src/main/java/org/bukkit/scheduler/BukkitScheduler.java
index 5cc9196b..ff58f326 100644
--- a/src/main/java/org/bukkit/scheduler/BukkitScheduler.java
+++ b/src/main/java/org/bukkit/scheduler/BukkitScheduler.java
@@ -91,7 +91,7 @@ public interface BukkitScheduler {
/**
* Calls a method on the main thread and returns a Future object
* This task will be executed by the main server thread.
- * <p />
+ * <p>
* Note: The Future.get() methods must NOT be called from the main thread.
* Note2: There is at least an average of 10ms latency until the isDone() method returns true.
*
@@ -123,33 +123,33 @@ public interface BukkitScheduler {
/**
* Check if the task currently running.
- * <p />
+ * <p>
* A repeating task might not be running currently, but will be running in the future.
* A task that has finished, and does not repeat, will not be running ever again.
- * <p />
+ * <p>
* Explicitly, a task is running if there exists a thread for it, and that thread is alive.
*
* @param taskId The task to check.
- * <p />
+ * <p>
* @return If the task is currently running.
*/
public boolean isCurrentlyRunning(int taskId);
/**
* Check if the task queued to be run later.
- * <p />
+ * <p>
* If a repeating task is currently running, it might not be queued now but could be in the future.
* A task that is not queued, and not running, will not be queued again.
*
* @param taskId The task to check.
- * <p />
+ * <p>
* @return If the task is queued to be run.
*/
public boolean isQueued(int taskId);
/**
* Returns a list of all active workers.
- * <p />
+ * <p>
* This list contains asynch tasks that are being executed by separate threads.
*
* @return Active workers