/** Constructor. */
  public VCLNodeIteratorImpl() {
    super();

    FastArrayList list = new FastArrayList();
    list.setFast(true);

    this.coll = list;
    this.reset();
  }