Show IntIterator.java syntax highlighted
package com.onionnetworks.util;
/**
* @author Justin F. Chapweske
*/
public interface IntIterator {
public boolean hasNextInt();
public int nextInt();
public void removeInt();
}
See more files for this project here