Package io.jmix.ui.component
Class Table.Column.ClickEvent<E>
java.lang.Object
java.util.EventObject
io.jmix.ui.component.Table.Column.ClickEvent<E>
- Type Parameters:
 E- an entity class
- All Implemented Interfaces:
 Serializable
- Enclosing interface:
 - Table.Column<E>
 
An event is fired when the user clicks inside the table cell that belongs to the current column.
- See Also:
 
- 
Field Summary
FieldsFields inherited from class java.util.EventObject
source - 
Constructor Summary
ConstructorsConstructorDescriptionClickEvent(Table.Column<E> source, E item, boolean isText) Constructor for a click event. - 
Method Summary
Methods inherited from class java.util.EventObject
toString 
- 
Field Details
- 
item
 - 
isText
protected final boolean isText 
 - 
 - 
Constructor Details
- 
ClickEvent
Constructor for a click event.- Parameters:
 source- the Table column from which this event originatesitem- an entity instance represented by the clicked rowisText-trueif the user clicks on text inside the table cell,falseotherwise
 
 - 
 - 
Method Details
- 
getSource
- Overrides:
 getSourcein classEventObject- Returns:
 - the Table column from which this event originates
 
 - 
getItem
- Returns:
 - an entity instance represented by the clicked row
 
 - 
isText
public boolean isText()- Returns:
 trueif the user clicks on text inside the table cell,falseotherwise
 
 -