View Javadoc
1   package org.vaadin.extension.gridscroll;
2   
3   import com.vaadin.ui.CustomComponent;
4   import com.vaadin.ui.Grid;
5   
6   /**
7    * The GridResizedEvent event is fired everytime Grid size has been changed 
8    * when {@link GridScrollExtension#setColumnResizeComponesationMode(org.vaadin.extension.gridscroll.shared.ColumnResizeCompensationMode)}
9    * with {@link org.vaadin.extension.gridscroll.shared.ColumnResizeCompensationMode#RESIZE_GRID} has been applied.
10   * 
11   * @since 2.2.0
12   * 
13   * @see GridScrollExtension#addGridResizedListener(org.vaadin.extension.gridscroll.GridScrollExtension.GridResizedListener)
14   *   
15   * @param <T> Bean type of the Grid  
16   * 
17   * @author Tatu Lund
18   */
19  @SuppressWarnings("serial")
20  public class GridResizedEvent<T> extends CustomComponent.Event {
21  	
22  	public GridResizedEvent(Grid<T> source) {
23  		super(source);
24  	}
25  }