X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Futil%2Ffreenet%2Ffcp2%2FCommand.java;h=63aaa9c7c14efb233bff195c1cbd5dc73cc78a74;hb=953de352675a4ad91fe307d816a4ea7780c94274;hp=5dd95934389f8dc75f5224a29945735a86d79302;hpb=6f1a8216cfba28add0ef365b46a08d16d4eb87fe;p=jSite.git diff --git a/src/de/todesbaum/util/freenet/fcp2/Command.java b/src/de/todesbaum/util/freenet/fcp2/Command.java index 5dd9593..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,9 +32,9 @@ 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: Command.java 371 2006-03-25 10:38:13Z bombe $ + * @version $Id$ */ public abstract class Command { @@ -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() {