com.bea.wli.worklist.api
Interface TaskInfoCursor

All Superinterfaces:
Serializable
All Known Subinterfaces:
TaskDataCursor

public interface TaskInfoCursor
extends Serializable

Deprecated: You should not use this class directly. Use TaskDataCursor instead. In a future release, this class will be removed. A cursor to browse your result set Deprecated: You should not use this class directly. Use TaskDataCursor instead. In a future release, this class will be removed.

Since:
8.1

Method Summary
 int getCurrentPage()
           
 int getTaskCount()
           
 TaskInfo[] getTaskInfos()
          Deprecated. Use getTasks instead
 int getTotalPages()
           
 boolean isAfterLast()
           
 boolean isBeforeFirst()
           
 void setCurrentPage(int pageNumber)
           
 

Method Detail

getTaskInfos

TaskInfo[] getTaskInfos()
                        throws ManagementException,
                               RemoteException
Deprecated. Use getTasks instead

Returns:
the task infos at the current position. An array of size 0 if none.
Throws:
ManagementException
RemoteException
See Also:
TaskDataCursor.getTasks()

isBeforeFirst

boolean isBeforeFirst()
Returns:
true if the cursor is before the first element, else false

isAfterLast

boolean isAfterLast()
Returns:
true if the cursor is after the last element, else false

getTaskCount

int getTaskCount()
Returns:
Count of tasks referenced by the cursor.

getTotalPages

int getTotalPages()

getCurrentPage

int getCurrentPage()

setCurrentPage

void setCurrentPage(int pageNumber)