public interface SpecifiedCursorManager extends CursorManager
CursorManager
that specifies methods for determining whether the SpecifiedCursorManager
is open and for getting and setting the input Source
objects associated with this SpecifiedCursorManager
.Modifier and Type | Method and Description |
---|---|
Source[] |
getInputSources()
Returns an array that has the input
Source objects associated with this SpecifiedCursorManager . |
boolean |
isOpen()
Indicates whether this
SpecifiedCursorManager is still open. |
void |
setInputSources(Source[] newInputSources)
Replaces the existing input
Source Source objects specified by the newInputSources array. |
addCursorManagerUpdateListener, close, createCursor, getFetchSize, getSource, isSpecificationUpdateNeeded, removeCursorManagerUpdateListener, setFetchSize, updateSpecification
boolean isOpen()
SpecifiedCursorManager
is still open.true
if the SpecifiedCursorManager
is open and false
if it is closed.Source[] getInputSources()
Source
objects associated with this SpecifiedCursorManager
.Source
objects that are the input Source
objects of this SpecifiedCursorManager
.void setInputSources(Source[] newInputSources)
Source
Source objects specified by the newInputSources
array.newInputSources
- An array of Source
Source objects of the SpecifiedCursorManager
.