package EDU.neu.ccs.demeter.tools.apstudio.graphedit;
import java.awt.*;
import java.io.*;
import java.util.*;
import EDU.neu.ccs.demeter.*;
import EDU.neu.ccs.demeter.common.tg.*;


import EDU.neu.ccs.demeter.*;
class ArraySpec_List implements java.util.Enumeration, Cloneable {
  protected Nonempty_ArraySpec_List first;
  public Nonempty_ArraySpec_List get_first() { return first; }
  public void set_first(Nonempty_ArraySpec_List new_first)
    { first = new_first; }
  ArraySpec_List() { super(); }
  public ArraySpec_List(Nonempty_ArraySpec_List first) {
    super();
    set_first(first);
  }
  public static ArraySpec_List parse(java.io.InputStream in) throws ParseException
    { return new Parser(in)._ArraySpec_List(); }
  public static ArraySpec_List parse(String s) {
    try { return parse(new java.io.ByteArrayInputStream(s.getBytes())); }
    catch (ParseException e) { throw new RuntimeException(e.toString()); }
  }
  void universal_trv0_bef(UniversalVisitor _v_) {
    _v_.before(this);
  }
  void universal_trv0_aft(UniversalVisitor _v_) {
    _v_.after(this);
  }
  void universal_trv0(UniversalVisitor _v_) {
    universal_trv0_bef(_v_);
    if (first != null) {
      _v_.before_first(this, first);
    first.universal_trv0(_v_);
      _v_.after_first(this, first);
    }
    universal_trv0_aft(_v_);
  }

  private Nonempty_ArraySpec_List tail;
  public void addElement(ArraySpec e) { 
    checktail(); 
    if (tail == null) {
      first = new Nonempty_ArraySpec_List(e,null); tail = first;
    } else {
	tail.set_next(new Nonempty_ArraySpec_List(e,null)); tail = tail.get_next();
    }
  }

  public void push(ArraySpec e) { first = new Nonempty_ArraySpec_List(e,first); }

  public java.util.Enumeration elements() { return new ArraySpec_List(first); } 

  public int size() {
    int i= 0;
    for (java.util.Enumeration e=elements(); e.hasMoreElements(); i++)
	e.nextElement();
    return i;
  }
  public boolean isEmpty() { return (first == null); }

  public boolean hasMoreElements() { return (first != null); }

  public Object nextElement() {
    ArraySpec car = first.get_it();
    first = first.get_next();
    return (Object) car;
  }

  private void checktail() {
    if (tail == null && first != null) {
	tail = first;
	while (tail.get_next() != null) tail = tail.get_next();
    }
  }
  public boolean contains(ArraySpec e) {
    java.util.Enumeration en = this.elements();
    while (en.hasMoreElements())
	if (e.equals((ArraySpec) en.nextElement())) return true;
    return false;
  }
}

