Class jclass.table.JCPaintInfo
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jclass.table.JCPaintInfo

java.lang.Object
   |
   +----jclass.table.JCPaintInfo

public class JCPaintInfo
extends Object
JCPaintInfo is the info parameter of a PAINT callback. This callback is called before and after a paint.
See Also:
PAINT

Variable Index

 o end_column
Column of last cell in range (top-left corner).
 o end_row
Row of last cell in range (bottom-right corner).
 o stage
This is either JCTblCallback.BEGIN or JCTblCallback.END.
 o start_column
Column of first cell in range (top-left corner).
 o start_row
Row of first cell in range (top-left corner).

Constructor Index

 o JCPaintInfo(Rectangle, int, int, int, int)

Variables

 o start_row
  public int start_row
Row of first cell in range (top-left corner).
 o start_column
  public int start_column
Column of first cell in range (top-left corner).
 o end_row
  public int end_row
Row of last cell in range (bottom-right corner).
 o end_column
  public int end_column
Column of last cell in range (top-left corner).
 o stage
  public int stage
This is either JCTblCallback.BEGIN or JCTblCallback.END. (read-only)

Constructors

 o JCPaintInfo
  public JCPaintInfo(Rectangle expose,
                     int start_row,
                     int start_col,
                     int end_row,
                     int end_col)

All Packages  Class Hierarchy  This Package  Previous  Next  Index