1 package org.enhydra.shark.api.client.wfmodel; 2 3 4 import org.enhydra.shark.api.client.wfbase.*; 5 import org.enhydra.shark.api.SharkTransaction; 6 7 18 public interface WfProcessIterator extends BaseIterator { 19 WfProcess get_next_object () throws BaseException; 20 WfProcess get_next_object (SharkTransaction t) throws BaseException; 21 22 WfProcess get_previous_object () throws BaseException; 23 WfProcess get_previous_object (SharkTransaction t) throws BaseException; 24 25 WfProcess[] get_next_n_sequence (int max_number) throws BaseException; 26 WfProcess[] get_next_n_sequence (SharkTransaction t,int max_number) throws BaseException; 27 28 WfProcess[] get_previous_n_sequence (int max_number) throws BaseException; 29 WfProcess[] get_previous_n_sequence (SharkTransaction t,int max_number) throws BaseException; 30 } | Popular Tags |