X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Ffcp%2FAllData.java;h=d1541bfedeaafea8bd41ff42c6f3c247d2abc632;hb=dd605aee444057a874fabf7fb0045b8448b0d1cd;hp=e6ed7831ee0171a19d3eab4f85557421d4e5961f;hpb=99e3619bcf2e4762678d6c8bd24da08bc87b7190;p=jFCPlib.git diff --git a/src/net/pterodactylus/fcp/AllData.java b/src/net/pterodactylus/fcp/AllData.java index e6ed783..d1541bf 100644 --- a/src/net/pterodactylus/fcp/AllData.java +++ b/src/net/pterodactylus/fcp/AllData.java @@ -1,6 +1,5 @@ /* - * jSite2 - AllData.java - - * Copyright © 2008 David Roden + * jFCPlib - AllData.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 @@ -29,7 +28,7 @@ import java.io.InputStream; * {@link #getPayloadInputStream()} to get the data. If an AllData message * passes through all registered {@link FcpListener}s without the payload being * consumed, the payload is discarded! - * + * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class AllData extends BaseMessage { @@ -39,7 +38,7 @@ public class AllData extends BaseMessage { /** * Creates an “AllData” message that wraps the received message. - * + * * @param receivedMessage * The received message * @param payloadInputStream @@ -52,7 +51,7 @@ public class AllData extends BaseMessage { /** * Returns the identifier of the request. - * + * * @return The identifier of the request */ public String getIdentifier() { @@ -61,7 +60,7 @@ public class AllData extends BaseMessage { /** * Returns the length of the data. - * + * * @return The length of the data, or -1 if the length could * not be parsed */ @@ -71,7 +70,7 @@ public class AllData extends BaseMessage { /** * Returns the startup time of the request. - * + * * @return The startup time of the request (in milliseconds since Jan 1, * 1970 UTC), or -1 if the time could not be parsed */ @@ -81,7 +80,7 @@ public class AllData extends BaseMessage { /** * Returns the completion time of the request. - * + * * @return The completion time of the request (in milliseconds since Jan 1, * 1970 UTC), or -1 if the time could not be parsed */ @@ -93,7 +92,7 @@ public class AllData extends BaseMessage { * Returns the payload input stream. You have consume the * input stream before returning from the * {@link FcpListener#receivedAllData(FcpConnection, AllData)} method! - * + * * @return The payload */ public InputStream getPayloadInputStream() {