com.github.fluorumlabs.disconnect.vaadin.renderers.CellRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-vaadin Show documentation
Show all versions of disconnect-vaadin Show documentation
Vaadin components bindings for Disconnect Zero
The newest version!
package com.github.fluorumlabs.disconnect.vaadin.renderers;
import com.github.fluorumlabs.disconnect.vaadin.elements.GridColumnElement;
import js.lang.Any;
import org.teavm.jso.JSFunctor;
import org.teavm.jso.JSProperty;
/**
* Created by Artem Godin on 2/4/2020.
*/
@JSFunctor
@FunctionalInterface
public interface CellRenderer- extends Any {
void render(GridColumnElement
- column, RowData
- rowData);
interface RowData
- extends Any {
@JSProperty
int getIndex();
@JSProperty
ITEM getItem();
@JSProperty
boolean getExpanded();
@JSProperty
int getLevel();
@JSProperty
boolean getSelected();
}
}