| commit | 039538861c285b0ba41ec1e25a2ec5f86556e66d | [log] [tgz] |
|---|---|---|
| author | Edwin Park <esp1@cornell.edu> | Tue Jun 11 16:30:34 2013 -0400 |
| committer | Edwin Park <esp1@cornell.edu> | Tue Jun 11 16:30:34 2013 -0400 |
| tree | 530050c977ea288d5bb21f70dfe9e02f9a763082 | |
| parent | 74e57f459f0783365ba4cf787cd3a606b438c0aa [diff] |
Added comments
diff --git a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/graphics/GraphicsContext.xtend b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/graphics/GraphicsContext.xtend index 77ad5ea..21be3da 100644 --- a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/graphics/GraphicsContext.xtend +++ b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/graphics/GraphicsContext.xtend
@@ -28,14 +28,23 @@ // Properties + /** + * Moves the origin of the current coordinate system by the designated offsets. + */ def void translate(double xOffset, double yOffset) def void setForegroundColor(Color foregroundColor) def void setBackgroundColor(Color backgroundColor) + /** + * @return The current clipping bounds. + */ def PixelRectangle getClipBounds() + /** + * Sets the current clipping bounds. + */ def void setClipBounds(PixelRectangle clipBounds) // Drawing operations