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