X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Futil%2Ffreenet%2Ffcp2%2FCommand.java;h=63aaa9c7c14efb233bff195c1cbd5dc73cc78a74;hb=953de352675a4ad91fe307d816a4ea7780c94274;hp=d1086c835ec92ff2ae63e0f4adf1bf4aad284bc2;hpb=e4f461213da0e30faf9e9eb2e97626abff320618;p=jSite.git diff --git a/src/de/todesbaum/util/freenet/fcp2/Command.java b/src/de/todesbaum/util/freenet/fcp2/Command.java index d1086c8..63aaa9c 100644 --- a/src/de/todesbaum/util/freenet/fcp2/Command.java +++ b/src/de/todesbaum/util/freenet/fcp2/Command.java @@ -1,6 +1,5 @@ /* - * todesbaum-lib - - * Copyright (C) 2006 David Roden + * jSite - Command.java - Copyright © 2006–2012 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 @@ -33,7 +32,7 @@ import java.io.Writer; * name of the {@link de.todesbaum.util.freenet.fcp2.Connection} connects). So * when receiving messages from the node you should always be prepared for * something you did not expect. - * + * * @author David Roden <droden@gmail.com> * @version $Id$ */ @@ -56,7 +55,7 @@ public abstract class Command { /** * Creates a new command with the specified name and identifier. - * + * * @param name * The name of the command * @param identifier @@ -69,7 +68,7 @@ public abstract class Command { /** * Returns the name of this command. - * + * * @return The name of this command */ public String getCommandName() { @@ -78,7 +77,7 @@ public abstract class Command { /** * Return the identifier of this command. - * + * * @return The identifier of this command */ public String getIdentifier() { @@ -91,7 +90,7 @@ public abstract class Command { * NOTE: Subclasses of Command must call * super.write(writer) before or after writing their own * parameters! - * + * * @param writer * The stream to write the parameters to * @throws IOException @@ -106,7 +105,7 @@ public abstract class Command { * Returns whether this command has payload to send after the message. * Subclasses need to return true here if they need to send * payload after the message. - * + * * @return true if this command has payload to send, * false otherwise */ @@ -118,7 +117,7 @@ public abstract class Command { * Returns the payload of this command as an {@link InputStream}. This * method is never called if {@link #hasPayload()} returns * false. - * + * * @return The payload of this command */ protected InputStream getPayload() { @@ -128,7 +127,7 @@ public abstract class Command { /** * Returns the length of the payload. This method is never called if * {@link #hasPayload()} returns false. - * + * * @return The length of the payload */ protected long getPayloadLength() {