Package oracle.olapi.data.source

Examples of oracle.olapi.data.source.CompoundCursorSpecification


    // Create a Cursor for unitsForSelections.
    CursorManagerSpecification cursorMngrSpec =
                dp.createCursorManagerSpecification(unitsForSelections);

    // Get the root CursorSpecification of the CursorManagerSpecification.
    CompoundCursorSpecification rootCursorSpec =
      (CompoundCursorSpecification) cursorMngrSpec.getRootCursorSpecification();

    // Get the CursorSpecification objects for the outputs.
    List outputSpecs = rootCursorSpec.getOutputs();
    ValueCursorSpecification timeSelValCSpec =
          (ValueCursorSpecification) outputSpecs.get(1); // Output for time.
    ValueCursorSpecification prodSelValCSpec =
          (ValueCursorSpecification) outputSpecs.get(3)// Output for product.
         
View Full Code Here


    // Create a Cursor for unitsForSelections.
    CursorManagerSpecification cursorMngrSpec =
                dp.createCursorManagerSpecification(unitsForSelections);

    // Get the root CursorSpecification of the CursorManagerSpecification.
    CompoundCursorSpecification rootCursorSpec =
      (CompoundCursorSpecification) cursorMngrSpec.getRootCursorSpecification();

    // Get the CursorSpecification objects for the outputs.
    List outputSpecs = rootCursorSpec.getOutputs();
    ValueCursorSpecification timeSelValCSpec =
          (ValueCursorSpecification) outputSpecs.get(1); // Output for time.
    ValueCursorSpecification prodSelValCSpec =
          (ValueCursorSpecification) outputSpecs.get(3)// Output for product.
         
View Full Code Here

TOP

Related Classes of oracle.olapi.data.source.CompoundCursorSpecification

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.