More whitespace fixes.
[jFCPlib.git] / src / net / pterodactylus / fcp / NodeHello.java
index 7c6e27f..01b0515 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * jSite2 - NodeHello.java -
- * Copyright © 2008 David Roden
+ * jFCPlib - NodeHello.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
@@ -21,14 +20,14 @@ package net.pterodactylus.fcp;
 
 /**
  * Some convenience methods for parsing a “NodeHello” message from the node.
- * 
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ *
+ * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
  */
 public class NodeHello extends BaseMessage {
 
        /**
         * Createa a new “NodeHello” message that wraps the received message.
-        * 
+        *
         * @param receivedMessage
         *            The received FCP message
         */
@@ -39,7 +38,7 @@ public class NodeHello extends BaseMessage {
        /**
         * Returns the build of the node. This may not be a number but also a string
         * like “@custom@” in case you built the node yourself.
-        * 
+        *
         * @return The build of the node
         */
        public String getBuild() {
@@ -49,7 +48,7 @@ public class NodeHello extends BaseMessage {
        /**
         * Returns the build number of the node. This may not be a number but also a
         * string like “@custom@” in case you built the node yourself.
-        * 
+        *
         * @return The build number of the node, or <code>-1</code> if the build
         *         number could not be determined
         */
@@ -59,7 +58,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the number of compression codecs.
-        * 
+        *
         * @return The number of compression codecs
         */
        public String getCompressionCodecs() {
@@ -68,7 +67,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the number of compression codecs.
-        * 
+        *
         * @return The number of compression codecs, or <code>-1</code> if the
         *         number of compression codecs could not be determined
         */
@@ -78,7 +77,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the unique connection identifier.
-        * 
+        *
         * @return The connection identifier
         */
        public String getConnectionIdentifier() {
@@ -87,7 +86,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the build of the external library file.
-        * 
+        *
         * @return The build of the external library file
         */
        public String getExtBuild() {
@@ -96,7 +95,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the build number of the external library file.
-        * 
+        *
         * @return The build number of the external library file, or <code>-1</code>
         *         if the build number could not be determined
         */
@@ -106,7 +105,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the revision of the external library file.
-        * 
+        *
         * @return The revision of the external library file
         */
        public String getExtRevision() {
@@ -115,7 +114,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the revision number of the external library file.
-        * 
+        *
         * @return The revision number of the external library file, or
         *         <code>-1</code> if the revision number could not be determined
         */
@@ -125,7 +124,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the FCP version the node speaks.
-        * 
+        *
         * @return The FCP version the node speaks
         */
        public String getFCPVersion() {
@@ -135,7 +134,7 @@ public class NodeHello extends BaseMessage {
        /**
         * Returns the make of the node, e.g. “Fred” (freenet reference
         * implementation).
-        * 
+        *
         * @return The make of the node
         */
        public String getNode() {
@@ -144,7 +143,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the language of the node as 2-letter code, e.g. “en” or “de”.
-        * 
+        *
         * @return The language of the node
         */
        public String getNodeLanguage() {
@@ -153,7 +152,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the revision of the node.
-        * 
+        *
         * @return The revision of the node
         */
        public String getRevision() {
@@ -162,7 +161,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the revision number of the node.
-        * 
+        *
         * @return The revision number of the node, or <code>-1</code> if the
         *         revision number coult not be determined
         */
@@ -172,7 +171,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns whether the node is currently is testnet mode.
-        * 
+        *
         * @return <code>true</code> if the node is currently in testnet mode,
         *         <code>false</code> otherwise
         */
@@ -182,7 +181,7 @@ public class NodeHello extends BaseMessage {
 
        /**
         * Returns the version of the node.
-        * 
+        *
         * @return The version of the node
         */
        public String getVersion() {