Package com.illumon.iris.console.utils
Class DefaultTableDoubleClickHandler
java.lang.Object
com.illumon.iris.console.utils.DefaultTableDoubleClickHandler
- All Implemented Interfaces:
TableColumnDoubleClickHandler
public class DefaultTableDoubleClickHandler extends Object implements TableColumnDoubleClickHandler
Example double click handler for a WTabelModel. This class is attached via the
IrisConsole.oneClickDoubleClickHandler.USym=com.illumon.iris.console.utils.DefaultTableDoubleClickHandler
property in the iris property file. This property is a comma separated list of handlers to invoke
when a double click event occurs
-
Constructor Summary
Constructors Constructor Description DefaultTableDoubleClickHandler()
-
Method Summary
Modifier and Type Method Description void
handleDoubleClick(GuiTable table, String column, int row, int col, MouseEvent event)
Handle a mouse double click event on a particular row/columnMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.illumon.iris.console.events.TableColumnDoubleClickHandler
handleDoubleClick
-
Constructor Details
-
DefaultTableDoubleClickHandler
public DefaultTableDoubleClickHandler()
-
-
Method Details
-
handleDoubleClick
Description copied from interface:TableColumnDoubleClickHandler
Handle a mouse double click event on a particular row/column- Specified by:
handleDoubleClick
in interfaceTableColumnDoubleClickHandler
- Parameters:
table
- The table that was clickedcolumn
- The name of the columnrow
- The row number clickedcol
- The column number clickedevent
- The MouseEvent that triggered this event.
-