blob: 96b1a954ba334a1b3cdb1f6719668083716c93c0 [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 LayerCell {
def Layer getLayer()
def PositionRectangle getPositionBounds()
def Object getDataValue()
def void setDataValue(Object newValue)
}