commit 26e183340d305c20aa7243c2b65dbcb8331e1209
Author: leszek <leszek@koltunski.pl>
Date:   Sun Feb 19 22:05:43 2017 +0000

    Exclude certain public methods from Javadoc API.

diff --git a/src/main/java/org/distorted/library/DistortedAttacheable.java b/src/main/java/org/distorted/library/DistortedAttacheable.java
index 8d3a6ba..4c9bec9 100644
--- a/src/main/java/org/distorted/library/DistortedAttacheable.java
+++ b/src/main/java/org/distorted/library/DistortedAttacheable.java
@@ -30,7 +30,19 @@ package org.distorted.library;
  */
 interface DistortedAttacheable
   {
-  void attachNow(DistortedNode n);
-  void detachNow(DistortedNode n);
+  /**
+   * Not part of public API, do not document
+   * @y.exclude
+   */
+  void attachNow(DistortedNode node);
+  /**
+   * Not part of public API, do not document
+   * @y.exclude
+   */
+  void detachNow(DistortedNode node);
+  /**
+   * Not part of public API, do not document
+   * @y.exclude
+   */
   void detachAllNow();
   }
