blob: 0da932812816b6654fd7d273714c27aa2a1fa84d [file] [log] [blame]
package org.eclipse.nebula.widgets.nattable.core.layer
import org.eclipse.nebula.widgets.nattable.core.axis.Axis
import org.eclipse.nebula.widgets.nattable.core.layer.cell.LayerCell
interface Layer {
// Axes
def Axis getHorizontalAxis()
def Axis getVerticalAxis()
// Cell
def LayerCell getCell(int columnPosition, int rowPosition)
}