home *** CD-ROM | disk | FTP | other *** search
- package jclass.table;
-
- import jclass.bwt.JCAWTEvent;
-
- public class JCValidateCellEvent extends JCAWTEvent {
- public static final int VALIDATE_CELL = 5010;
- int row;
- int column;
- boolean changed;
- int datatype;
- Object value;
- boolean doit = true;
-
- public int getRow() {
- return this.row;
- }
-
- public int getColumn() {
- return this.column;
- }
-
- public boolean getChanged() {
- return this.changed;
- }
-
- public int getDataType() {
- return this.datatype;
- }
-
- public Object getValue() {
- return this.value;
- }
-
- public void setValue(Object var1) {
- this.value = var1;
- }
-
- public boolean getAllowValueChange() {
- return this.doit;
- }
-
- public void setAllowValueChange(boolean var1) {
- this.doit = var1;
- }
-
- public JCValidateCellEvent(Table var1) {
- super(var1, 5010);
- }
- }
-