com.citra.pivot.olap
Interface DrillableOlapModel
- All Superinterfaces:
- OlapTableModel, PivotConstants, TreeModel, TreeTableModel
public interface DrillableOlapModel
- extends OlapTableModel
DrillableOlapModel is a model with drilling capabilities. When drilling, a node is specified to become the model's new root node.
This has as effect that nodes that are not descendants of the 'drill' node are hidden from the view.
Method Summary |
void |
drillTo(Object memberNode)
Performs a drill at memberNode . |
boolean |
isDrilled(Object memberNode)
Determines whether memberNode represents the current drill node. |
drillTo
void drillTo(Object memberNode)
- Performs a drill at
memberNode
.
- Parameters:
memberNode
- the node to drill to
isDrilled
boolean isDrilled(Object memberNode)
- Determines whether
memberNode
represents the current drill node.
- Parameters:
memberNode
- the node to test for the drill
- Returns:
- true if a drill exists, false otherwise