📝 Slightly improve javadoc
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Tue, 3 Sep 2024 09:43:44 +0000 (11:43 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Tue, 3 Sep 2024 13:06:45 +0000 (15:06 +0200)
src/main/java/net/pterodactylus/fcp/SentFeed.java
src/main/java/net/pterodactylus/fcp/package-info.java

index 4256293..fbe9f1b 100644 (file)
@@ -49,7 +49,7 @@ public class SentFeed extends BaseMessage implements Identifiable {
        /**
         * Returns the node status of the peer. The node status is definied in
         * {@code freenet.node.PeerManager}.
-        * <p>
+        *
         * <ol start="1">
         * <li>Connected</li>
         * <li>Backed off</li>
index 04b0cc6..9b9b0b5 100644 (file)
@@ -3,20 +3,24 @@
  * with a Freenet Node.
  *
  * <h2>Usage</h2>
- *
+ * <p>
  * This library was designed to implement the full range of the Freenet Client
  * Protocol, Version 2.0. At the moment the library provides a rather low-level
  * approach, wrapping each FCP message into its own object but some kind of
  * high-level client that does not require any interfaces to be implemented
  * will probably provided as well.
- *
+ * </p>
+ * <p>
  * First, create a connection to the node:
- *
+ *</p>
  * <pre>
- * FcpConnection fcpConnection = new FcpConnection();
+ * FcpConnection fcpConnection = new DefaultFcpConnection();
  * </pre>
  *
  * Now implement the {@link net.pterodactylus.fcp.FcpListener} interface
+ * or extend {@link net.pterodactylus.fcp.FcpAdapter} to create a listener
+ * to {@link net.pterodactylus.fcp.FcpConnection#addFcpListener(net.pterodactylus.fcp.FcpListener) register}
+ * with the FCP connection, call {@link net.pterodactylus.fcp.FcpConnection#connect()},
  * and handle all incoming events.
  *
  * <pre>
@@ -33,4 +37,3 @@
  */
 
 package net.pterodactylus.fcp;
-