fix javadoc generation
[sbp.git] / src / edu / berkeley / sbp / meta / Repeat.java
index bbf800a..800639b 100644 (file)
@@ -12,7 +12,7 @@ import java.lang.ref.*;
  *  Currently this class exports only static methods to create repetitions;
  *  there are no public instance methods or constructors
  */
-public class Repeat extends Union {
+class Repeat extends Union {
 
     public Repeat(final Element e, boolean zeroOkay, boolean manyOkay, Object tag) {
         this(e, zeroOkay, manyOkay, null, false, tag); }
@@ -41,9 +41,12 @@ public class Repeat extends Union {
             add(Sequence.create(tag, new Element[] {   }, null).followedBy(follow));
         if (!(zeroOkay && manyOkay))
             add(Sequence.create(tag, new Element[] { e }, null).followedBy(follow));
-        if (zeroOkay && manyOkay)
+
+        // FEATURE: stringify ~[]* as ...
+        if (zeroOkay && manyOkay && separator!=null) {
             add(Sequence.create(many1(e, separator, tag)).followedBy(follow));
-        if (!zeroOkay && manyOkay) {
+
+        } else if (manyOkay) {
             if (separator==null)
                 add(Sequence.create(tag,
                                     new Element[] { Repeat.this,    e },