blob: f76eb9957830e01f95973d66045069ee6d646c47 [file] [log] [blame]
package org.eclipse.nebula.widgets.nattable.core.geometry
/**
* Represents a range of pixels along some linear dimension (e.g. width, height in pixels).
*/
interface PixelRange {
/**
* The first pixel location in the range.
*/
def int getStart()
/**
* The number of pixels in the range.
*/
def int getSize()
}