Class RowGroupExpandEvent
java.lang.Object
org.eclipse.nebula.widgets.nattable.layer.event.RowVisualChangeEvent
org.eclipse.nebula.widgets.nattable.layer.event.RowStructuralChangeEvent
org.eclipse.nebula.widgets.nattable.hideshow.event.ShowRowPositionsEvent
org.eclipse.nebula.widgets.nattable.group.performance.event.RowGroupExpandEvent
- All Implemented Interfaces:
ILayerEvent
,IStructuralChangeEvent
,IVisualChangeEvent
Specialization of the
ShowRowPositionsEvent
. Mainly used to inform
about showed rows but avoid handling it in the RowGroupHeaderLayer.- Since:
- 2.1
-
Constructor Summary
ModifierConstructorDescriptionprotected
Clone constructor.RowGroupExpandEvent
(ILayer layer, int... rowPositions) Constructor.RowGroupExpandEvent
(ILayer layer, Collection<Integer> rowPositions) Constructor. -
Method Summary
Methods inherited from class org.eclipse.nebula.widgets.nattable.hideshow.event.ShowRowPositionsEvent
cloneEvent, getRowDiffs
Methods inherited from class org.eclipse.nebula.widgets.nattable.layer.event.RowStructuralChangeEvent
getChangedPositionRectangles, getColumnDiffs, isHorizontalStructureChanged, isVerticalStructureChanged
Methods inherited from class org.eclipse.nebula.widgets.nattable.layer.event.RowVisualChangeEvent
convertToLocal, getLayer, getRowIndexes, getRowPositionRanges, setRowPositionRanges, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.nebula.widgets.nattable.layer.event.ILayerEvent
convertToLocal
Methods inherited from interface org.eclipse.nebula.widgets.nattable.layer.event.IVisualChangeEvent
getLayer
-
Constructor Details
-
RowGroupExpandEvent
Constructor.- Parameters:
layer
- The layer to which the given row positions match.rowPositions
- The row positions that are made visible again.
-
RowGroupExpandEvent
Constructor.- Parameters:
layer
- The layer to which the given row positions match.rowPositions
- The row positions that are made visible again.
-
RowGroupExpandEvent
Clone constructor.- Parameters:
event
- TheRowGroupExpandEvent
to clone.
-