X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Ffcp%2FFinishedCompression.java;h=9d09d6237b0dc7b56784805bca3b7955877c9de3;hb=a655177a4605236e866ac7e0ce32f7cb5289cbc4;hp=20038b63d6d7917cd887303ee6d6bb6015095a2d;hpb=f553531be78d6d6d95dc152728f2b8d40242b57d;p=jFCPlib.git diff --git a/src/net/pterodactylus/fcp/FinishedCompression.java b/src/net/pterodactylus/fcp/FinishedCompression.java index 20038b6..9d09d62 100644 --- a/src/net/pterodactylus/fcp/FinishedCompression.java +++ b/src/net/pterodactylus/fcp/FinishedCompression.java @@ -1,6 +1,5 @@ /* - * jSite2 - FinishedCompression.java - - * Copyright © 2008 David Roden + * jFCPlib - FinishedCompression.java - Copyright © 2008 David Roden * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,16 +21,15 @@ package net.pterodactylus.fcp; /** * A “FinishedCompression” message signals the client that the compression of * the request data has been finished. - * - * @author David Roden <droden@gmail.com> - * @version $Id$ + * + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class FinishedCompression extends BaseMessage { /** * Creates a new “FinishedCompression” message that wraps the received * message. - * + * * @param receivedMessage * The message that was recevied */ @@ -41,7 +39,7 @@ public class FinishedCompression extends BaseMessage { /** * Returns the identifier of the request. - * + * * @return The identifier of the request */ public String getIdentifier() { @@ -50,7 +48,7 @@ public class FinishedCompression extends BaseMessage { /** * Returns the ID of the codec that was used for compression. - * + * * @return The ID of the codec that was used for compression */ public int getCodec() { @@ -59,7 +57,7 @@ public class FinishedCompression extends BaseMessage { /** * Returns the original size of the data (i.e. before compression). - * + * * @return The original size of the data */ public long getOriginalSize() { @@ -68,7 +66,7 @@ public class FinishedCompression extends BaseMessage { /** * Returns the compressed size of the data (i.e. after compression). - * + * * @return The compressed size of the data */ public long getCompressedSize() {