1 9 package org.ozoneDB.DxLib; 10 11 import java.io.*; 12 13 19 public abstract class DxAbstractIterator extends DxObject implements DxIterator { 20 21 final static long serialVersionUID = 1L; 22 23 boolean atFirstObject; 24 boolean objectRemoved; 25 26 27 31 public Object key() { 32 throw new RuntimeException ( "key(): subsclass responsibility" ); 33 } 34 } 35 | Popular Tags |