add error messages for missing font selections
[jSite2.git] / src / net / pterodactylus / util / fcp / package-info.java
index 82971fc..b39b8e5 100644 (file)
  * 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 (<em>not yet
- * implemented</em>).
- * 
- * 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:
  * 
  * <pre>
  * FcpConnection fcpConnection = new FcpConnection();
  * </pre>
  * 
- * <h3>The FcpListener Method</h3>
- * 
- * 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.
  * 
  * <pre>
  * public class MyClass implements FcpListener {
@@ -40,8 +30,6 @@
  * 
  * }
  * </pre>
- * 
- * Next, create
  */
 package net.pterodactylus.util.fcp;