Class ColumnGroupExpandEvent
java.lang.Object
org.eclipse.nebula.widgets.nattable.layer.event.ColumnVisualChangeEvent
org.eclipse.nebula.widgets.nattable.layer.event.ColumnStructuralChangeEvent
org.eclipse.nebula.widgets.nattable.hideshow.event.ShowColumnPositionsEvent
org.eclipse.nebula.widgets.nattable.group.performance.event.ColumnGroupExpandEvent
- All Implemented Interfaces:
ILayerEvent
,IStructuralChangeEvent
,IVisualChangeEvent
Specialization of the
ShowColumnPositionsEvent
. Mainly used to inform
about showed columns but avoid handling it in the ColumnGroupHeaderLayer.- Since:
- 2.1
-
Constructor Summary
ConstructorDescriptionClone constructor.ColumnGroupExpandEvent
(ILayer layer, int... columnPositions) Constructor.ColumnGroupExpandEvent
(IUniqueIndexLayer layer, Collection<Integer> columnPositions) Constructor. -
Method Summary
Methods inherited from class org.eclipse.nebula.widgets.nattable.hideshow.event.ShowColumnPositionsEvent
cloneEvent, getColumnDiffs
Methods inherited from class org.eclipse.nebula.widgets.nattable.layer.event.ColumnStructuralChangeEvent
getChangedPositionRectangles, getRowDiffs, isHorizontalStructureChanged, isVerticalStructureChanged
Methods inherited from class org.eclipse.nebula.widgets.nattable.layer.event.ColumnVisualChangeEvent
convertToLocal, getColumnIndexes, getColumnPositionRanges, getLayer, setColumnPositionRanges, 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
-
ColumnGroupExpandEvent
Constructor.- Parameters:
layer
- The layer to which the given column positions match.columnPositions
- The column positions that are made visible again.
-
ColumnGroupExpandEvent
Constructor.- Parameters:
layer
- The layer to which the given column positions match.columnPositions
- The column positions that are made visible again.
-
ColumnGroupExpandEvent
Clone constructor.- Parameters:
event
- TheColumnGroupExpandEvent
to clone.
-