Package rocket.collection.client

Examples of rocket.collection.client.SkippingIterator


  }

  public Iterator iterator() {
    // create a skippingIterator which returns all of horizontalPanel's
    // widgets except for the padder.
    final SkippingIterator iterator = new SkippingIterator() {
      protected boolean skip(final Object object) {
        return getPadder() == object;
      }
    };
    iterator.setIterator(this.getHorizontalPanel().iterator());
    return iterator;
  }
View Full Code Here

TOP

Related Classes of rocket.collection.client.SkippingIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.