![JAR search and dependency download from the Maven repository](/logo.png)
com.extjs.gxt.ui.client.event.ColumnHeaderEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxt Show documentation
Show all versions of gxt Show documentation
Rich Internet Application Framework for GWT
/*
* Sencha GXT 2.3.1 - Sencha for GWT
* Copyright(c) 2007-2013, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.extjs.gxt.ui.client.event;
import com.extjs.gxt.ui.client.widget.BoxComponent;
import com.extjs.gxt.ui.client.widget.grid.ColumnHeader;
import com.extjs.gxt.ui.client.widget.menu.Menu;
/**
* ColumnHeader
event type.
*/
public class ColumnHeaderEvent extends ComponentEvent {
private int column;
private Menu menu;
private BoxComponent container;
public ColumnHeaderEvent(ColumnHeader header) {
super(header);
}
public ColumnHeaderEvent(ColumnHeader header, BoxComponent container, int column, Menu menu) {
super(header);
setContainer(container);
setColumn(column);
setMenu(menu);
}
public BoxComponent getContainer() {
return container;
}
public void setContainer(BoxComponent container) {
this.container = container;
}
public int getColumn() {
return column;
}
public void setColumn(int column) {
this.column = column;
}
public Menu getMenu() {
return menu;
}
public void setMenu(Menu menu) {
this.menu = menu;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy