blob: 2fd489306ddcc379f9ac2a08b21d37914ec38aec [file] [log] [blame]
package org.eclipse.nebula.widgets.nattable.core.geometry
import java.math.BigDecimal
@Data
class PixelArea {
BigDecimal width
BigDecimal height
new(double width, double height) {
this(new BigDecimal(width), new BigDecimal(height))
}
new(BigDecimal width, BigDecimal height) {
_width = width
_height = height
}
}