1 package com.genimen.djeneric.test.strong; 2 3 // Place your custom code BETWEEN the following tags 4 //<DjenericManualCode id="1"> 5 //</DjenericManualCode> 6 public interface OrderCursor 7 { 8 public Order getNext() throws TestException; 9 10 public void close() throws TestException; 11 12 // Place your custom code BETWEEN the following tags 13 //<DjenericManualCode> 14 //</DjenericManualCode> 15 }