extend library class
[IRC.git] / Robust / src / ClassLibrary / Iterator.java
1 public class Iterator {
2   boolean hasNext() {
3     System.out.println( "Iterator is an abstract class." );
4     System.exit(-1);
5   }
6
7   Object next() {
8     System.out.println( "Iterator is an abstract class." );
9     System.exit(-1);
10   }
11
12   void remove() {
13     System.out.println( "Iterator is an abstract class." );
14     System.exit(-1);
15   }    
16 }