X-Git-Url: https://git.pterodactylus.net/?p=jFCPlib.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ffcp%2Fpackage-info.java;h=04b0cc62b7aa5328fa3f7d21aaee40c00e73b324;hp=dbda870fcfbc1446d4346ca98eea1fdd482ad621;hb=b171126719c983b590c51f22eb60a3e0afdf1fb9;hpb=572802370f7dff98b690df85b79e256335e28b33 diff --git a/src/main/java/net/pterodactylus/fcp/package-info.java b/src/main/java/net/pterodactylus/fcp/package-info.java index dbda870..04b0cc6 100644 --- a/src/main/java/net/pterodactylus/fcp/package-info.java +++ b/src/main/java/net/pterodactylus/fcp/package-info.java @@ -1,33 +1,33 @@ /** * Package that holds all the message types that are used in the communication * with a Freenet Node. - * + * *

Usage

- * + * * 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. - * + * * First, create a connection to the node: - * + * *
  * FcpConnection fcpConnection = new FcpConnection();
  * 
- * + * * Now implement the {@link net.pterodactylus.fcp.FcpListener} interface * and handle all incoming events. - * + * *
  * public class MyClass implements FcpListener {
- * 
+ *
  * 	public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
  * 		…
  * 	}
- * 
+ *
  * 	// implement all further methods here
- * 
+ *
  * }
  * 
*/