Package com.illumon.iris.console.events
Interface TableColumnDoubleClickHandler
- All Known Implementing Classes:
DefaultTableDoubleClickHandler
,GlobalOneClickSymHandler
public interface TableColumnDoubleClickHandler
This interface is for classes that want to respond to double click events on a table and should be
used in conjunction with
TableEventHandlerFactory.addDoubleClickHandler(String, TableColumnDoubleClickHandler)
or TableEventHandlerFactory.addGlobalDoubleClickHandler(TableColumnDoubleClickHandler)
- ImplNote:
- Users should only implement one of the two methods.
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
handleDoubleClick
(GuiTable table, String column, int row, int col) Handle a mouse double click event on a particular row/columndefault void
handleDoubleClick
(GuiTable table, String column, int row, int col, MouseEvent event) Handle a mouse double click event on a particular row/column
-
Method Details
-
handleDoubleClick
Handle a mouse double click event on a particular row/column- Parameters:
table
- The table that was clickedcolumn
- The name of the columnrow
- The row number clickedcol
- The column number clicked- ImplNote:
- use this method if you do not need the MouseEvent
-
handleDoubleClick
Handle a mouse double click event on a particular row/column- 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.- ImplNote:
- use this method if you do need the MouseEvent
-