Package org.openntf.domino

Examples of org.openntf.domino.ViewEntry


   *
   * @see java.util.Iterator#next()
   */
  @SuppressWarnings("deprecation")
  public ViewEntry next() {
    ViewEntry result = null;
    ViewEntry currentEntry = getCurrentEntry();
    try {
      result = ((currentEntry == null) ? getCollection().getFirstEntry() : getCollection().getNextEntry(currentEntry));
      currentIndex_++;
    } catch (Throwable t) {
      DominoUtils.handleException(t);
View Full Code Here

TOP

Related Classes of org.openntf.domino.ViewEntry

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.