X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FUnion.java;h=99ef42b9aeadf14864c8e0563a76d8399596f909;hp=6cba89c9cd9cbae6afff924a05106dfd3367f758;hb=280e93a7eec101178dc81f8009eedb2916271f09;hpb=9b7ce1d3e4ac84ecd2d0f5f461b42c40f38e4783;ds=sidebyside diff --git a/src/edu/berkeley/sbp/Union.java b/src/edu/berkeley/sbp/Union.java index 6cba89c..99ef42b 100644 --- a/src/edu/berkeley/sbp/Union.java +++ b/src/edu/berkeley/sbp/Union.java @@ -10,6 +10,10 @@ import java.lang.ref.*; /** an element which can produce one of several alternatives */ public class Union extends Element implements Iterable { + private final String name; + private final boolean synthetic; + private final List alternatives = new ArrayList(); + /** * Since every cycle in a non-degenerate grammar contains at * least one Union, every instance of this class must be able to @@ -20,16 +24,12 @@ public class Union extends Element implements Iterable { * @param synthetic if true, this Union's "long form" is "obvious" and should not be displayed when printing the grammar */ public Union() { this(null, false); } - public Union(String shortForm) { this(shortForm, false); } - public Union(String shortForm, boolean synthetic) { - this.shortForm = shortForm; + public Union(String name) { this(name, false); } + public Union(String name, boolean synthetic) { + this.name = name; this.synthetic = synthetic; } - final String shortForm; - final boolean synthetic; - private final List alternatives = new ArrayList(); - public Iterator iterator() { return alternatives.iterator(); } public boolean contains(Sequence s) { return alternatives.contains(s); } @@ -64,11 +64,11 @@ public class Union extends Element implements Iterable { // Display ////////////////////////////////////////////////////////////////////////////// public String getName() { - if (shortForm != null) return shortForm; + if (name != null) return name; return "(anon_union)"; } public String toString() { - if (shortForm != null) return shortForm; + if (name != null) return name; StringBuffer sb = new StringBuffer(); sb.append("("); bodyToString(sb, "", " | ");