package com.sun.java.help.search; interface NonnegativeIntegerGenerator { public static final int END = -1; int first() throws Exception; int next() throws Exception; }