X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Futil%2Ffcp%2Fpackage-info.java;h=b39b8e5c7f4e0e9973ddf4581124bb3144602b9e;hb=9d55936cc51f39b1f45d28b7872ddc712f7c9b2f;hp=82971fc1733b84ac20fbf5183de561146e1ed6e0;hpb=3ac8f5c9c09c73ba0eb19bdebde399a16cb55264;p=jSite2.git diff --git a/src/net/pterodactylus/util/fcp/package-info.java b/src/net/pterodactylus/util/fcp/package-info.java index 82971fc..b39b8e5 100644 --- a/src/net/pterodactylus/util/fcp/package-info.java +++ b/src/net/pterodactylus/util/fcp/package-info.java @@ -10,24 +10,14 @@ * high-level client that does not require any interfaces to be implemented * will probably provided as well. * - * So far there are three kinds of approach on using the FCP library in your - * own projects: the {@link net.pterodactylus.util.fcp.FcpListener} method, the - * {@link net.pterodactylus.util.fcp.FcpAdapter} method, and the - * {@link net.pterodactylus.util.fcp.FcpHighLevelClient} method (not yet - * implemented). - * - * For all three methods you need an instance of - * {@link net.pterodactylus.util.fcp.FcpConnection}. Create this to connect to - * your Freenet node. + * First, create a connection to the node: * *
  * FcpConnection fcpConnection = new FcpConnection();
  * 
* - *

The FcpListener Method

- * - * Implement the {@link net.pterodactylus.util.fcp.FcpListener} interface and - * handle every incoming event. + * Now implement the {@link net.pterodactylus.util.fcp.FcpListener} interface + * and handle all incoming events. * *
  * public class MyClass implements FcpListener {
@@ -40,8 +30,6 @@
  * 
  * }
  * 
- * - * Next, create */ package net.pterodactylus.util.fcp;