From: David ‘Bombe’ Roden Date: Sat, 12 Apr 2008 22:04:32 +0000 (+0000) Subject: remove warning from javadoc X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=5b75165eccde5118cf88161d66a926617d64e6e4;p=jSite2.git remove warning from javadoc git-svn-id: http://trooper/svn/projects/jSite/trunk@747 c3eda9e8-030b-0410-8277-bc7414b0a119 --- 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;