blob: ef0f4f37a5c4bba5f633a09d4d96f322bf8ae426 [file] [log] [blame]
package org.eclipse.nebula.widgets.nattable.core.layer.cell
import org.eclipse.nebula.widgets.nattable.core.geometry.PositionRectangle
import org.eclipse.nebula.widgets.nattable.core.layer.Layer
interface Cell {
def Layer getLayer()
def PositionRectangle getPositionBounds()
def Object getDataValue()
def void setDataValue(Object newValue)
}