Package org.olap4j
Interface CellSetListener.AxisChange
-
- Enclosing interface:
- CellSetListener
public static interface CellSetListener.AxisChange
Description of a change to a particularCellSetAxis
; part of aCellSetListener.CellSetChange
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Position
getAfterPosition()
Returns the position after the change.CellSetAxis
getAxis()
Returns the axis affected by this change.Position
getBeforePosition()
Returns the position before the change.
-
-
-
Method Detail
-
getAxis
CellSetAxis getAxis()
Returns the axis affected by this change.- Returns:
- Axis affected by this change
-
getBeforePosition
Position getBeforePosition()
Returns the position before the change. Null if the change created a new position.- Returns:
- Position before the change, or null if the position is newly created
-
getAfterPosition
Position getAfterPosition()
Returns the position after the change. Null if the change deleted this position.- Returns:
- Position after the change, or null if the position is deleted
-
-