com.vaadin.v7.client.widget.grid.RowReference Maven / Gradle / Ivy
Show all versions of vaadin-compatibility-client Show documentation
/*
* Copyright (C) 2000-2023 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.client.widget.grid;
import com.google.gwt.dom.client.TableRowElement;
import com.vaadin.v7.client.widgets.Grid;
/**
* A data class which contains information which identifies a row in a
* {@link Grid}.
*
* Since this class follows the Flyweight
-pattern any instance of
* this object is subject to change without the user knowing it and so should
* not be stored anywhere outside of the method providing these instances.
*
* @author Vaadin Ltd
* @param
* the row object type
* @since 7.4
*/
public class RowReference {
private final Grid grid;
private int rowIndex;
private T row;
private TableRowElement element;
/**
* Creates a new row reference for the given grid.
*
* @param grid
* the grid that the row belongs to
*/
public RowReference(Grid grid) {
this.grid = grid;
}
/**
* Sets the identifying information for this row.
*
* @param rowIndex
* the index of the row
* @param row
* the row object
* @param element
* the element of the row
*/
public void set(int rowIndex, T row, TableRowElement element) {
this.rowIndex = rowIndex;
this.row = row;
this.element = element;
}
/**
* Gets the grid that contains the referenced row.
*
* @return the grid that contains referenced row
*/
public Grid getGrid() {
return grid;
}
/**
* Gets the row index of the row.
*
* @return the index of the row
*/
public int getRowIndex() {
return rowIndex;
}
/**
* Gets the row data object.
*
* @return the row object
*/
public T getRow() {
return row;
}
/**
* Gets the table row element of the row.
*
* @return the element of the row
*/
public TableRowElement getElement() {
return element;
}
}