com.vaadin.v7.client.widget.escalator.Row Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-client Show documentation
Show all versions of vaadin-compatibility-client Show documentation
Vaadin 7 compatibility package for Vaadin 8
/*
* 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.escalator;
import com.google.gwt.dom.client.TableRowElement;
import com.vaadin.v7.client.widgets.Escalator;
/**
* A representation of a row in an {@link Escalator}.
*
* @since 7.4
* @author Vaadin Ltd
*/
public interface Row {
/**
* Gets the row index.
*
* @return the row index
*/
public int getRow();
/**
* Gets the root element for this row.
*
* The {@link EscalatorUpdater} may update the class names of the element
* and add inline styles, but may not modify the contained DOM structure.
*
* If you wish to modify the cells within this row element, access them via
* the List<{@link Cell}>
objects passed in to
* {@code EscalatorUpdater.updateCells(Row, List)}
*
* @return the root element of the row
*/
public TableRowElement getElement();
}