| Pacote | mx.olap |
| Classe | public class OLAPCube |
| Herança | OLAPCube Proxy Object |
| Implementa | IOLAPCube, IEventDispatcher |
Hide MXML Syntax
The <mx:OLAPCube> tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPCube
Properties
dataProvider=""
dimensions=""
elements=""
measures=""
/>
Default MXML Propertyelements
Veja também
| Propriedade | Definido por | ||
|---|---|---|---|
![]() | constructor : Object
A reference to the class object or constructor function for a given object instance.
| Object | |
| dataProvider : ICollectionView
The flat data used to populate the OLAP cube.
| OLAPCube | ||
| dimensions : IList
All dimensions in the cube, as a list of IOLAPDimension instances.
| OLAPCube | ||
| elements : Array
[write-only]
Processes the input Array and initializes the dimensions
and measures properties based on the elements of the Array.
| OLAPCube | ||
| measures : IList
[write-only]
Sets the measures of the OLAP cube, as a list of OLAPMeasure instances.
| OLAPCube | ||
| name : String
The name of the OLAP cube.
| OLAPCube | ||
![]() | prototype : Object
[static]
A reference to the prototype object of a class or function object.
| Object | |
| Propriedade | Definido por | ||
|---|---|---|---|
| cubeBuildingTimeInterval : int = 5 | OLAPCube | ||
| measureDimensionName : String = "Measures"
Sets the name of the dimension for the measures of the OLAP cube.
| OLAPCube | ||
| queryBuildingTimeInterval : int = 1 | OLAPCube | ||
| resultClass : Classe | OLAPCube | ||
| Método | Definido por | ||
|---|---|---|---|
|
Constructor.
| OLAPCube | ||
|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event.
| OLAPCube | ||
|
Aborts a query that has been submitted for execution.
| OLAPCube | ||
|
Aborts the current cube refresh, if one is executing.
| OLAPCube | ||
|
Dispatches an event into the event flow.
| OLAPCube | ||
|
Queues an OLAP query for execution.
| OLAPCube | ||
|
Returns the dimension with the given name within the OLAP cube.
| OLAPCube | ||
|
Checks whether the object has any listeners registered for a specific type of event.
| OLAPCube | ||
![]() |
Indicates whether an object has a specified property defined.
| Object | |
![]() |
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter.
| Object | |
![]() |
Indicates whether the specified property exists and is enumerable.
| Object | |
|
Refreshes the cube from the data provider.
| OLAPCube | ||
|
Removes a listener.
| OLAPCube | ||
![]() |
Sets the availability of a dynamic property for loop operations.
| Object | |
|
Returns the name of the cube
| OLAPCube | ||
![]() |
Returns the primitive value of the specified object.
| Object | |
|
Checks whether an event listener is registered with this object or any of its ancestors for the specified event type.
| OLAPCube | ||
| Evento | Descrição | Definido por | ||
|---|---|---|---|---|
| Dispatched when a cube has been created and is ready to be queried. | OLAPCube | |||
| Dispatched continuously as a cube is being created by a call to the refresh() method. | OLAPCube | |||
| Dispatched continuously as a query result is being generated by a call to the execute() method. | OLAPCube | |||
| cubeBuildingTimeInterval | propriedade |
protected var cubeBuildingTimeInterval:int = 5
| dataProvider | propriedade |
dataProvider:ICollectionView [read-write]
The flat data used to populate the OLAP cube.
You must call the refresh() method
to initialize the cube after setting this property.
public function get dataProvider():ICollectionView
public function set dataProvider(value:ICollectionView):void
| dimensions | propriedade |
dimensions:IList [read-write]
All dimensions in the cube, as a list of IOLAPDimension instances.
public function get dimensions():IList
public function set dimensions(value:IList):void
| elements | propriedade |
elements:Array [write-only]
Processes the input Array and initializes the dimensions
and measures properties based on the elements of the Array.
Dimensions are represented in the Array by instances of the OLAPDimension class,
and measures are represented by instances of the OLAPMeasure class.
Use this property to define the dimensions and measures of a cube in a single Array.
public function set elements(value:Array):void
| measureDimensionName | propriedade |
protected var measureDimensionName:String = "Measures"
Sets the name of the dimension for the measures of the OLAP cube.
The default value is "Measures".
| measures | propriedade |
measures:IList [write-only] Sets the measures of the OLAP cube, as a list of OLAPMeasure instances.
public function set measures(value:IList):void
| name | propriedade |
name:String [read-write]
The name of the OLAP cube.
public function get name():String
public function set name(value:String):void
| queryBuildingTimeInterval | propriedade |
protected var queryBuildingTimeInterval:int = 1
| resultClass | propriedade |
protected var resultClass:Classe
| OLAPCube | () | Construtor |
public function OLAPCube(name:String = null)
Constructor.
Parâmetrosname:String (default = null) — The name of the OLAP cube.
|
| addEventListener | () | método |
public function addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
Parâmetros
type:String — The type of event.
|
|
listener:Function — The listener function that processes the event.
|
|
useCapture:Boolean (default = false) — Determines whether the listener works in the capture phase
or the target and bubbling phases.
|
|
priority:int (default = 0) — The priority level of the event listener.
|
|
useWeakReference:Boolean (default = false) — Determines whether the reference to the listener is strong or weak.
A strong reference (the default) prevents your listener from being garbage-collected.
A weak reference does not.
|
Veja também
| cancelQuery | () | método |
public function cancelQuery(query:IOLAPQuery):void
Aborts a query that has been submitted for execution.
Parâmetros
query:IOLAPQuery — The query to abort.
|
| cancelRefresh | () | método |
| dispatchEvent | () | método |
public function dispatchEvent(event:Event):Boolean
Dispatches an event into the event flow.
The event target is the object upon which the dispatchEvent() method is called.
Parâmetros
event:Event — The Event object that is dispatched into the event flow.
|
Boolean — A value of true if the event was successfully dispatched.
A value of false indicates failure or that the
preventDefault() method was called on the event.
|
Veja também
| execute | () | método |
public function execute(query:IOLAPQuery):AsyncToken
Queues an OLAP query for execution.
After you call the refresh() method to update the cube,
you must wait for a complete event
before you call the execute() method.
OLAP cubes can be complex, so you do not want your application
to pause while Flex calculates the results of your OLAP query.
The execute() method returns an instance of the AsyncToken class,
which lets you set up handlers for asynchronous operations so that
your application can continue to execute during query processing.
When using the AsyncToken class, you set up two functions to handle the query results. In this exemplo, the showResult() function handles the query results when the query succeeds, and the showFault() function handles any errors detected during query execution:
<mx:Script>
// Function to execute a query.
private function runQuery(cube:IOLAPCube):void {
// Create a query instance.
var query:IOLAPQuery = getQuery(cube);
// Execute the query.
var token:AsyncToken = cube.execute(query);
// Set up handlers for the query results.
token.addResponder(new AsyncResponder(showResult, showFault));
}
// Handle a query fault.
private function showFault(result:Object, token:Object):void {
Alert.show("Error in query.");
}
// Handle a query success.
private function showResult(result:Object, token:Object):void {
if (!result) {
Alert.show("No results from query.");
return;
}
myOLAPDG.dataProvider= result as OLAPResult;
}
</mx:Script>
<mx:OLAPDataGrid id="myOLAPDG" width="100%" height="100%" />
Parâmetros
query:IOLAPQuery — The query to execute, represented by an IOLAPQuery instance.
|
AsyncToken — An AsyncToken instance.
|
| findDimension | () | método |
public function findDimension(name:String):IOLAPDimension
Returns the dimension with the given name within the OLAP cube.
Parâmetros
name:String — The name of the dimension.
|
IOLAPDimension — An IOLAPDimension instance representing the dimension,
or null if a dimension is not found.
|
| hasEventListener | () | método |
public function hasEventListener(type:String):Boolean
Checks whether the object has any listeners registered for a specific type of event. This lets you determine where an object has altered handling of an event type in the event flow hierarchy.
Parâmetros
type:String — The type of event.
|
Boolean — A value of true if a listener of the specified type
is registered; false otherwise.
|
Veja também
| refresh | () | método |
public function refresh():void
Refreshes the cube from the data provider. After setting the cube's schema, you must call this method to build the cube.
This method dispatches a progress event to indicate progress,
and dispatches a complete event when the cube is complete
and ready to execute queries.
You must wait for a complete event
before you call the execute() method to run a query.
| removeEventListener | () | método |
public function removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener. If there no matching listener is registered, a call to this method has no effect.
Parâmetros
type:String — The type of event.
|
|
listener:Function — The listener object to remove.
|
|
useCapture:Boolean (default = false) — Specifies whether the listener was registered for
the capture phase or the target and bubbling phases.
|
Veja também
| toString | () | método |
public function toString():String
Returns the name of the cube
RetornaString — The name of the cube.
|
| willTrigger | () | método |
public function willTrigger(type:String):Boolean
Checks whether an event listener is registered with this object or any of its ancestors for the specified event type.
This method returns true if an event listener is triggered during any phase of the event flow
when an event of the specified type is dispatched to this object or to any of its descendants.
Parâmetros
type:String — The type of event.
|
Boolean — A value of true if a listener of the
specified type is triggered; false otherwise.
|
Veja também
| complete | Evento |
mx.events.CubeEvent
mx.events.CubeEvent.CUBE_COMPLETE
Dispatched when a cube has been created and is ready to be queried.
TheCubeEvent.CUBE_COMPLETE constant defines the value of the
type property of the event object for a
complete event.
The properties of the event object have the following values:
| Propriedade | Valor |
|---|---|
bubbles | false |
cancelable | true |
currentTarget | The Object that defines the
event listener that handles the event. For exemplo, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget. |
description | Descrição of what is being processed. |
progress | The number of elements in the cube that have been updated. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
total | The total number of elements in the cube that need to be udpated. |
type | CubeEvent.CUBE_COMPLETE |
| progress | Evento |
mx.events.CubeEvent
mx.events.CubeEvent.CUBE_PROGRESS
Dispatched continuously as a cube is being created
by a call to the refresh() method.
CubeEvent.CUBE_PROGRESS constant defines the value of the
type property of the event object for a
progress event.
The properties of the event object have the following values:
| Propriedade | Valor |
|---|---|
bubbles | false |
cancelable | true |
currentTarget | The Object that defines the
event listener that handles the event. For exemplo, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget. |
description | Descrição of what is being processed. |
progress | The number of elements in the cube that have been updated. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
total | The total number of elements in the cube that need to be udpated. |
type | CubeEvent.CUBE_PROGRESS |
| queryProgress | Evento |
mx.events.CubeEvent
mx.events.CubeEvent.QUERY_PROGRESS
Dispatched continuously as a query result is being generated
by a call to the execute() method.
CubeEvent.QUERY_PROGRESS constant defines the value of the
type property of the event object for a
queryProgress event.
The properties of the event object have the following values:
| Propriedade | Valor |
|---|---|
bubbles | false |
cancelable | true |
currentTarget | The Object that defines the
event listener that handles the event. For exemplo, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget. |
description | Descrição of what is being processed. |
progress | The number of elements in the cube that have been updated. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
total | The total number of elements in the cube that need to be udpated. |
type | CubeEvent.QUERY_PROGRESS |