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