All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.v7.client.widget.escalator.Cell Maven / Gradle / Ivy

There is a newer version: 8.27.3
Show newest version
/*
 * Copyright (C) 2000-2024 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */
package com.vaadin.v7.client.widget.escalator;

import com.google.gwt.dom.client.TableCellElement;

/**
 * Describes a cell
 * 

* It's a representation of the element in a grid cell, and its row and column * indices. *

* Unlike the {@link FlyweightRow}, an instance of {@link Cell} can be stored in * a field. * * @since 7.4 * @author Vaadin Ltd */ public class Cell { private final int row; private final int column; private final TableCellElement element; /** * Constructs a new {@link Cell}. * * @param row * The index of the row * @param column * The index of the column * @param element * The cell element */ public Cell(int row, int column, TableCellElement element) { super(); this.row = row; this.column = column; this.element = element; } /** * Returns the index of the row the cell resides in. * * @return the row index * */ public int getRow() { return row; } /** * Returns the index of the column the cell resides in. * * @return the column index */ public int getColumn() { return column; } /** * Returns the element of the cell. * * @return the cell element */ public TableCellElement getElement() { return element; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy