Fix copyright line.
[jFCPlib.git] / src / net / pterodactylus / fcp / PersistentPut.java
index 1457146..892bd81 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * jSite2 - PersistentPut.java -
- * Copyright © 2008 David Roden
+ * jFCPlib - PersistentPut.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
@@ -23,7 +22,7 @@ package net.pterodactylus.fcp;
  * A “PersistentPut” message notifies a client about a persistent
  * {@link ClientPut} request.
  * 
- * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
  */
 public class PersistentPut extends BaseMessage {
 
@@ -49,8 +48,8 @@ public class PersistentPut extends BaseMessage {
        /**
         * Returns the data length of the request.
         * 
-        * @return The data length of the request, or <code>-1</code> if the
-        *         length could not be parsed
+        * @return The data length of the request, or <code>-1</code> if the length
+        *         could not be parsed
         */
        public long getDataLength() {
                return FcpUtils.safeParseLong(getField("DataLength"));
@@ -80,8 +79,8 @@ public class PersistentPut extends BaseMessage {
         * <code>-1</code> is returned each block is tried forever.
         * 
         * @return The maximum number of retries for failed blocks, or
-        *         <code>-1</code> for unlimited retries, or <code>-2</code> if
-        *         the number of retries could not be parsed
+        *         <code>-1</code> for unlimited retries, or <code>-2</code> if the
+        *         number of retries could not be parsed
         */
        public int getMaxRetries() {
                return FcpUtils.safeParseInt(getField("MaxRetries"));
@@ -118,8 +117,8 @@ public class PersistentPut extends BaseMessage {
        /**
         * Returns whether this request has started.
         * 
-        * @return <code>true</code> if the request has started,
-        *         <code>false</code> otherwise
+        * @return <code>true</code> if the request has started, <code>false</code>
+        *         otherwise
         */
        public boolean isStarted() {
                return Boolean.valueOf(getField("Started"));