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

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

There is a newer version: 8.27.3
Show newest version
/*
 * 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(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy