📝 Add some @param tags to appease javadoc
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Tue, 3 Sep 2024 09:12:05 +0000 (11:12 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Tue, 3 Sep 2024 09:12:05 +0000 (11:12 +0200)
src/main/java/net/pterodactylus/fcp/AddPeer.java
src/main/java/net/pterodactylus/fcp/FCPPluginMessage.java
src/main/java/net/pterodactylus/fcp/FcpListener.java

index c2a0555..ad71ce4 100644 (file)
@@ -49,8 +49,9 @@ public class AddPeer extends FcpMessage {
         * Creates a new “AddPeer” request that reads the noderef of the peer from
         * the given file.
         *
-        * @param file
-        *            The file to read the noderef from
+        * @param trust The trust values for the new peer
+        * @param visibility The visibility of the new peer
+        * @param file The file to read the noderef from
         */
        public AddPeer(Trust trust, Visibility visibility, String file) {
                this(trust, visibility);
@@ -66,8 +67,9 @@ public class AddPeer extends FcpMessage {
         * Creates a new “AddPeer” request that reads the noderef of the peer from
         * the given URL.
         *
-        * @param url
-        *            The URL to read the noderef from
+        * @param trust The trust values for the new peer
+        * @param visibility The visibility of the new peer
+        * @param url The URL to read the noderef from
         */
        public AddPeer(Trust trust, Visibility visibility, URL url) {
                this(trust, visibility);
@@ -82,8 +84,9 @@ public class AddPeer extends FcpMessage {
        /**
         * Creates a new “AddPeer” request that adds the peer given by the noderef.
         *
-        * @param nodeRef
-        *            The noderef of the peer
+        * @param trust The trust values for the new peer
+        * @param visibility The visibility of the new peer
+        * @param nodeRef The noderef of the peer
         */
        public AddPeer(Trust trust, Visibility visibility, NodeRef nodeRef) {
                this(trust, visibility);
index 19a2d6b..901f0be 100644 (file)
@@ -29,6 +29,7 @@ public class FCPPluginMessage extends FcpMessage {
 
        /**
         * @deprecated Use {@link #FCPPluginMessage(String, String)} instead
+        * @param pluginClass The name of the plugin’s main class
         */
        @Deprecated
        public FCPPluginMessage(String pluginClass) {
@@ -43,6 +44,7 @@ public class FCPPluginMessage extends FcpMessage {
 
        /**
         * @deprecated Use {@link #FCPPluginMessage(String, String)} instead
+        * @param identifier The identifier of the message
         */
        @Deprecated
        public void setIdentifier(String identifier) {
@@ -63,6 +65,7 @@ public class FCPPluginMessage extends FcpMessage {
 
        /**
         * @deprecated Use {@link #setData(InputStream, long)} instead
+        * @param dataLength The length of the additional data in this message
         */
        @Deprecated
        public void setDataLength(long dataLength) {
index 7ff3f96..68688dc 100644 (file)
@@ -405,9 +405,8 @@ public interface FcpListener extends EventListener {
 
        /**
         * Notifies a listener that a message has been received. This method is
-        * only called if {@link FcpConnection#handleMessage(FcpMessage)} does not
-        * recognize the message. Should that ever happen, please file a bug
-        * report!
+        * only called if an unrecognized message is received. Should that ever
+        * happen, please file a bug report!
         *
         * @param fcpConnection
         *            The connection that received the message