blob: 109bd94cf8178a7b8c91ebc5ba095524e55817fa [file] [log] [blame]
package org.eclipse.nebula.widgets.nattable.core.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)
}