Skip navigation links

Oracle® OLAP Java API Reference
11g Release 2 (11.2)

E10794-06


oracle.olapi.data.source
Interface CursorInfoSpecification

All Known Subinterfaces:
CompoundCursorInfoSpecification, ValueCursorInfoSpecification
All Known Implementing Classes:
CompoundCursorSpecification, CursorSpecification, ValueCursorSpecification

public interface CursorInfoSpecification

An interface that specifies characteristics of a 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.

See Also:
DataProvider

Method Summary
 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.

 

Method Detail

getSource

Source getSource()
Gets the Source for this CursorInfoSpecification.
Returns:
The Source for this CursorInfoSpecification.

isParentEndCalculationSpecified

boolean isParentEndCalculationSpecified()
Indicates whether the CursorInfoSpecification is set to calculate the ending position of the Cursor in the parent Cursor.
Returns:
true if the CursorInfoSpecification is set to calculate the ending position of the Cursor in the parent Cursor and false otherwise.

isParentStartCalculationSpecified

boolean isParentStartCalculationSpecified()
Indicates whether the CursorInfoSpecification is set to calculate the starting position of the Cursor in the parent Cursor.
Returns:
true if the CursorInfoSpecification is set to calculate the starting position of the Cursor in the parent Cursor and false otherwise.

setParentEndCalculationSpecified

void setParentEndCalculationSpecified(boolean b)
Specifies whether to calculate the ending position of the Cursor in the parent Cursor.
Parameters:
b - true to calculate the ending position of the Cursor in the parent and false otherwise.

setParentStartCalculationSpecified

void setParentStartCalculationSpecified(boolean b)
Specifies whether to calculate the starting position of the Cursor in the parent Cursor.
Parameters:
b - true to calculate the starting position of the Cursor in the parent and false otherwise.

Skip navigation links

Copyright © 2002, 2010, Oracle. All rights reserved.