aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/com/vaadin/ui/Grid.java
diff options
context:
space:
mode:
authorSomeoneToIgnore <mail4score@gmail.com>2017-02-07 13:32:56 +0300
committerDenis <denis@vaadin.com>2017-02-07 12:32:56 +0200
commit5061d53a55be72d5cb8c7394342491aec6f4a10e (patch)
tree46a534ea11dd7cce37a40235b06f37f6c38799b3 /server/src/main/java/com/vaadin/ui/Grid.java
parent26a454e31c064e0f763701381cbe167e58d711b3 (diff)
downloadvaadin-framework-5061d53a55be72d5cb8c7394342491aec6f4a10e.tar.gz
vaadin-framework-5061d53a55be72d5cb8c7394342491aec6f4a10e.zip
Added missing parametrisation onto the column field of the GridContextClickEvent. (#8473)
* Added missing parametrisation onto the column field of the GridContextClickEvent.
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/Grid.java')
-rw-r--r--server/src/main/java/com/vaadin/ui/Grid.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/main/java/com/vaadin/ui/Grid.java b/server/src/main/java/com/vaadin/ui/Grid.java
index bb740abbcf..fc45ffe539 100644
--- a/server/src/main/java/com/vaadin/ui/Grid.java
+++ b/server/src/main/java/com/vaadin/ui/Grid.java
@@ -366,7 +366,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
private final T item;
private final int rowIndex;
- private final Column<?, ?> column;
+ private final Column<T, ?> column;
private final Section section;
/**
@@ -387,7 +387,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
*/
public GridContextClickEvent(Grid<T> source,
MouseEventDetails mouseEventDetails, Section section,
- int rowIndex, T item, Column<?, ?> column) {
+ int rowIndex, T item, Column<T, ?> column) {
super(source, mouseEventDetails);
this.item = item;
this.section = section;
@@ -409,7 +409,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
*
* @return the clicked column
*/
- public Column<?, ?> getColumn() {
+ public Column<T, ?> getColumn() {
return column;
}