public interface CursorInfoSpecification
Cursor
. You can create an instance of an implementation of CursorInfoSpecification
by calling the createCursorInfoSpecification
method of a DataProvider
. You can pass the CursorInfoSpecification
to one of the createCursorManager
methods of the DataProvider
, and then call the createCursor
method of the CursorManager
.DataProvider
Modifier and Type | Method and Description |
---|---|
Source |
getSource()
Gets the
Source for this CursorInfoSpecification . |
boolean |
isParentEndCalculationSpecified()
Indicates whether the
CursorInfoSpecification is set to calculate the ending position of the Cursor in the parent Cursor . |
boolean |
isParentStartCalculationSpecified()
Indicates whether the
CursorInfoSpecification is set to calculate the starting position of the Cursor in the parent Cursor . |
void |
setParentEndCalculationSpecified(boolean b)
Specifies whether to calculate the ending position of the
Cursor in the parent Cursor . |
void |
setParentStartCalculationSpecified(boolean b)
Specifies whether to calculate the starting position of the
Cursor in the parent Cursor . |
Source getSource()
Source
for this CursorInfoSpecification
.Source
for this CursorInfoSpecification
.boolean isParentEndCalculationSpecified()
CursorInfoSpecification
is set to calculate the ending position of the Cursor
in the parent Cursor
.true
if the CursorInfoSpecification
is set to calculate the ending position of the Cursor
in the parent Cursor
and false otherwise.boolean isParentStartCalculationSpecified()
CursorInfoSpecification
is set to calculate the starting position of the Cursor
in the parent Cursor
.true
if the CursorInfoSpecification
is set to calculate the starting position of the Cursor
in the parent Cursor
and false otherwise.void setParentEndCalculationSpecified(boolean b)
Cursor
in the parent Cursor
.b
- true
to calculate the ending position of the Cursor
in the parent and false
otherwise.void setParentStartCalculationSpecified(boolean b)
Cursor
in the parent Cursor
.b
- true
to calculate the starting position of the Cursor
in the parent and false
otherwise.