X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fnet%2Fpterodactylus%2Ffcp%2FSimpleProgress.java;fp=src%2Fnet%2Fpterodactylus%2Ffcp%2FSimpleProgress.java;h=4d935127c331368be7f5ea0d851176288c058062;hb=a655177a4605236e866ac7e0ce32f7cb5289cbc4;hp=7022f5670cd1850e53639724717aff6d2bb7ead2;hpb=e0d4c56493b97a16514ca865cad0ae42a2d8a5a2;p=jFCPlib.git diff --git a/src/net/pterodactylus/fcp/SimpleProgress.java b/src/net/pterodactylus/fcp/SimpleProgress.java index 7022f56..4d93512 100644 --- a/src/net/pterodactylus/fcp/SimpleProgress.java +++ b/src/net/pterodactylus/fcp/SimpleProgress.java @@ -21,14 +21,14 @@ package net.pterodactylus.fcp; /** * A “SimpleProgress” message tells the client about the progress of a * {@link ClientGet} or {@link ClientPut} operation. - * + * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class SimpleProgress extends BaseMessage { /** * Creates a new “SimpleProgress” message that wraps the received message. - * + * * @param receivedMessage * The received message */ @@ -39,7 +39,7 @@ public class SimpleProgress extends BaseMessage { /** * Returns the total number of blocks. This number may increase as long as * {@link #isFinalizedTotal()} returns false. - * + * * @return The total number of blocks */ public int getTotal() { @@ -51,7 +51,7 @@ public class SimpleProgress extends BaseMessage { * This number might actually be lower than {@link #getTotal} because of * redundancy information. This number may also increase as long as * {@link #isFinalizedTotal()} returns false. - * + * * @return The number of required blocks */ public int getRequired() { @@ -60,7 +60,7 @@ public class SimpleProgress extends BaseMessage { /** * Returns the number of blocks that have failed and run out of retries. - * + * * @return The number of failed blocks */ public int getFailed() { @@ -70,7 +70,7 @@ public class SimpleProgress extends BaseMessage { /** * Returns the number of fatally failed blocks. A block that failed fatally * can never be completed, even with infinite retries. - * + * * @return The number of fatally failed blocks */ public int getFatallyFailed() { @@ -79,7 +79,7 @@ public class SimpleProgress extends BaseMessage { /** * Returns the number of blocks that have been successfully processed. - * + * * @return The number of succeeded blocks */ public int getSucceeded() { @@ -91,7 +91,7 @@ public class SimpleProgress extends BaseMessage { * been finalized. Once the total number of blocks has been finalized for a * request it will not change any more, and this method of every further * SimpleProgress message will always return true. - * + * * @return true if the number of total blocks has been * finalized, false otherwise */ @@ -101,7 +101,7 @@ public class SimpleProgress extends BaseMessage { /** * Returns the identifier of the request. - * + * * @return The identifier of the request */ public String getIdentifier() {